diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-05-10 12:31:49 -0400 |
commit | ae36ef2c7fb722b7480d73c7a95a5d1e2ece7831 (patch) | |
tree | c6cfbfa143807b10f3baf86eeed3ff6275237c72 /tilesets/animations.asm | |
parent | e95d42e0af1921f516c1fd4269024aa3f586514f (diff) |
Labeled every function in ROM0 that's referenced in the source
Diffstat (limited to 'tilesets/animations.asm')
-rw-r--r-- | tilesets/animations.asm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tilesets/animations.asm b/tilesets/animations.asm index a4af6cbc0..a3b0c4f06 100644 --- a/tilesets/animations.asm +++ b/tilesets/animations.asm @@ -472,9 +472,9 @@ AnimateWaterTile: ; fc402 and 3 << 1 ; 2 x 8 = 16 bytes per tile -rept 3 add a -endr + add a + add a add WaterTileFrames % $100 ld l, a @@ -511,9 +511,9 @@ ForestTreeLeftAnimation: ; fc45c .asm_fc46c ld a, [TileAnimationTimer] call GetForestTreeFrame -rept 3 add a -endr + add a + add a add ForestTreeLeftFrames % $100 ld l, a ld a, 0 @@ -553,9 +553,9 @@ ForestTreeRightAnimation: ; fc4c4 .asm_fc4d4 ld a, [TileAnimationTimer] call GetForestTreeFrame -rept 3 add a -endr + add a + add a add ForestTreeLeftFrames % $100 ld l, a ld a, 0 @@ -589,9 +589,9 @@ ForestTreeLeftAnimation2: ; fc4f2 ld a, [TileAnimationTimer] call GetForestTreeFrame xor 2 -rept 3 add a -endr + add a + add a add ForestTreeLeftFrames % $100 ld l, a ld a, 0 @@ -621,9 +621,9 @@ ForestTreeRightAnimation2: ; fc51c ld a, [TileAnimationTimer] call GetForestTreeFrame xor 2 -rept 3 add a -endr + add a + add a add ForestTreeLeftFrames % $100 ld l, a ld a, 0 @@ -734,9 +734,9 @@ SafariFountainAnim2: ; fc5eb ld c, l ld a, [TileAnimationTimer] and 6 -rept 3 add a -endr + add a + add a ld e, a ld d, 0 ld hl, SafariFountainFrames |