diff options
| author | dannye <corrnondacqb@yahoo.com> | 2016-06-12 02:55:49 -0500 |
|---|---|---|
| committer | dannye <corrnondacqb@yahoo.com> | 2016-06-12 02:55:49 -0500 |
| commit | 604eb493c42b457f9e006e2cf67f29c15e0d1d0b (patch) | |
| tree | 6e64376d2d2594acdf97b0aee3d7449577853508 /engine/town_map.asm | |
| parent | Merge branch 'master' of https://github.com/pret/pokered into merge-pokered (diff) | |
| download | pokeyellow-604eb493c42b457f9e006e2cf67f29c15e0d1d0b.tar.gz pokeyellow-604eb493c42b457f9e006e2cf67f29c15e0d1d0b.tar.xz pokeyellow-604eb493c42b457f9e006e2cf67f29c15e0d1d0b.zip | |
Remove more address comments
Diffstat (limited to 'engine/town_map.asm')
| -rwxr-xr-x | engine/town_map.asm | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/engine/town_map.asm b/engine/town_map.asm index 65a10912..b34c4951 100755 --- a/engine/town_map.asm +++ b/engine/town_map.asm @@ -27,7 +27,7 @@ DisplayTownMap: pop af jr .enterLoop -.townMapLoop ; 70ef4 (1c:4ef4) +.townMapLoop coord hl, 0, 0 lb bc, 1, 20 call ClearScreenArea @@ -37,7 +37,7 @@ DisplayTownMap: ld b, 0 add hl, bc ld a, [hl] -.enterLoop ; 70f08 (1c:4f08) +.enterLoop ld de, wTownMapCoords call LoadTownMapEntry ld a, [de] @@ -149,7 +149,7 @@ LoadTownMap_Fly: ld [hJoy7], a call LoadPlayerSpriteGraphics call LoadFontTilePatterns - ld de, BirdSprite ; $4d80 + ld de, BirdSprite ld b, BANK(BirdSprite) ld c, $c ld hl, vSprites + $40 @@ -299,7 +299,7 @@ LoadTownMap: ld bc, WorldMapTileGraphicsEnd - WorldMapTileGraphics ld a, BANK(WorldMapTileGraphics) call FarCopyData - ld hl, MonNestIcon ; $574b + ld hl, MonNestIcon ld de, vSprites + $40 ld bc, MonNestIconEnd - MonNestIcon ld a, BANK(MonNestIcon) @@ -592,11 +592,6 @@ LoadTownMapEntry: ld l, a ret -; ExternalMapEntries: - ; dr $7139c,$7140b -; InternalMapEntries: - ; dr $7140b,$7174b - INCLUDE "data/town_map_entries.asm" INCLUDE "text/map_names.asm" ; TODO: relabel addresses |
