diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-25 13:40:10 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-25 14:23:16 -0500 |
commit | e34e68095df1f91dc5357669c187623d7cba39c6 (patch) | |
tree | 5a452f39d9c44012df90a12f1524042c6dbcd062 /tilesets/animations.asm | |
parent | da2b01a36c6855230ec36c42bd49e7cf2ca2d348 (diff) |
Resolve #428: Use `HIGH(X)` and `LOW(X)` instead of `X / $100` and `X % $100` or `X >> 8` and `X & $ff`
Diffstat (limited to 'tilesets/animations.asm')
-rw-r--r-- | tilesets/animations.asm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tilesets/animations.asm b/tilesets/animations.asm index 06f68234a..dc84a0cba 100644 --- a/tilesets/animations.asm +++ b/tilesets/animations.asm @@ -475,10 +475,10 @@ AnimateWaterTile: ; fc402 add a add a - add WaterTileFrames % $100 + add LOW(WaterTileFrames) ld l, a ld a, 0 - adc WaterTileFrames / $100 + adc HIGH(WaterTileFrames) ld h, a ; Stack now points to the start of the tile for this frame. @@ -513,10 +513,10 @@ ForestTreeLeftAnimation: ; fc45c add a add a add a - add ForestTreeLeftFrames % $100 + add LOW(ForestTreeLeftFrames) ld l, a ld a, 0 - adc ForestTreeLeftFrames / $100 + adc HIGH(ForestTreeLeftFrames) ld h, a .asm_fc47d @@ -555,10 +555,10 @@ ForestTreeRightAnimation: ; fc4c4 add a add a add a - add ForestTreeLeftFrames % $100 + add LOW(ForestTreeLeftFrames) ld l, a ld a, 0 - adc ForestTreeLeftFrames / $100 + adc HIGH(ForestTreeLeftFrames) ld h, a push bc ld bc, ForestTreeRightFrames - ForestTreeLeftFrames @@ -591,10 +591,10 @@ ForestTreeLeftAnimation2: ; fc4f2 add a add a add a - add ForestTreeLeftFrames % $100 + add LOW(ForestTreeLeftFrames) ld l, a ld a, 0 - adc ForestTreeLeftFrames / $100 + adc HIGH(ForestTreeLeftFrames) ld h, a .asm_fc515 @@ -623,10 +623,10 @@ ForestTreeRightAnimation2: ; fc51c add a add a add a - add ForestTreeLeftFrames % $100 + add LOW(ForestTreeLeftFrames) ld l, a ld a, 0 - adc ForestTreeLeftFrames / $100 + adc HIGH(ForestTreeLeftFrames) ld h, a push bc ld bc, ForestTreeRightFrames - ForestTreeLeftFrames |