diff options
| author | Daniel Harding <33dannye@gmail.com> | 2018-07-15 21:44:14 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-15 21:44:14 -0500 |
| commit | 929c65f805ba144e7e093b2c5b2f70b84176ba00 (patch) | |
| tree | 388aa35997bcbc07367459f7e556fe08c2ff821e /data/mapHeaders/route2.asm | |
| parent | Merge pull request #185 from UrsSchmidt/master (diff) | |
| parent | make comments consistent throughout all mapHeader files (diff) | |
| download | pokeyellow-929c65f805ba144e7e093b2c5b2f70b84176ba00.tar.gz pokeyellow-929c65f805ba144e7e093b2c5b2f70b84176ba00.tar.xz pokeyellow-929c65f805ba144e7e093b2c5b2f70b84176ba00.zip | |
Merge pull request #188 from snelson3/consistent-map-header-comments
make comments consistent throughout all mapHeader files
Diffstat (limited to 'data/mapHeaders/route2.asm')
| -rwxr-xr-x | data/mapHeaders/route2.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/mapHeaders/route2.asm b/data/mapHeaders/route2.asm index 38e80842..2476d0a5 100755 --- a/data/mapHeaders/route2.asm +++ b/data/mapHeaders/route2.asm @@ -1,8 +1,8 @@ Route2_h: - db 00 ; Tileset - db ROUTE_2_HEIGHT,ROUTE_2_WIDTH ;Height,Width blocks (1 block = 4x4 tiles) - dw Route2Blocks, Route2TextPointers, Route2Script - db NORTH | SOUTH ;Connection Byte + db 00 ; tileset + db ROUTE_2_HEIGHT, ROUTE_2_WIDTH ; dimensions (y, x) + dw Route2Blocks, Route2TextPointers, Route2Script ; blocks, texts, scripts + db NORTH | SOUTH ; connections NORTH_MAP_CONNECTION ROUTE_2, PEWTER_CITY, -3, 2, PewterCityBlocks SOUTH_MAP_CONNECTION ROUTE_2, VIRIDIAN_CITY, -3, 2, ViridianCityBlocks, 1 - dw Route2Object ;Object Data Pointer + dw Route2Object ; objects |
