diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-22 10:54:45 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-22 10:54:45 -0400 |
commit | 07f670f956a8ae04b786d927565a2e89c1b3f00e (patch) | |
tree | 68e9e6c9318d84724e456e83d52b9bb9afdee4e1 /engine/games | |
parent | 0b6b706ffce6a8bf9af59b5f308d9ee94ef8d172 (diff) |
Identify more sprite graphics and map object labels, and have consistent anonymous jumptable labels
Diffstat (limited to 'engine/games')
-rw-r--r-- | engine/games/card_flip.asm | 6 | ||||
-rw-r--r-- | engine/games/dummy_game.asm | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/engine/games/card_flip.asm b/engine/games/card_flip.asm index 0e879ff0..ba73f202 100644 --- a/engine/games/card_flip.asm +++ b/engine/games/card_flip.asm @@ -3,11 +3,11 @@ CARDFLIP_LIGHT_ON EQU "♀" ; $f5 CARDFLIP_DECK_SIZE EQU 4 * 6 -; two labels below called from inside ./dummy_game.asm -Unknown_e0908: +DummyGameGFX: ; Graphics for an unused Game Corner ; game were meant to be here. -ret_e0908: + +UnusedCursor_InterpretJoypad_AnimateCursor: ret _CardFlip: diff --git a/engine/games/dummy_game.asm b/engine/games/dummy_game.asm index 55c74407..a1ab49f2 100644 --- a/engine/games/dummy_game.asm +++ b/engine/games/dummy_game.asm @@ -14,10 +14,10 @@ _DummyGame: ld hl, DummyGameLZ ld de, vTiles2 tile $00 call Decompress - ld hl, Unknown_e0908 + ld hl, DummyGameGFX ld de, vTiles0 tile $00 ld bc, 4 tiles - ld a, BANK(Unknown_e0908) + ld a, BANK(DummyGameGFX) call FarCopyBytes ld a, $8 ld hl, wc508 @@ -77,7 +77,7 @@ _DummyGame: ret .ResetBoard: - call ret_e0908 + call UnusedCursor_InterpretJoypad_AnimateCursor jr nc, .proceed ld hl, wJumptableIndex set 7, [hl] @@ -232,7 +232,7 @@ endr ld hl, wJumptableIndex inc [hl] .AskPlayAgain: - call ret_e0908 + call UnusedCursor_InterpretJoypad_AnimateCursor jr nc, .restart ld hl, wJumptableIndex set 7, [hl] |