diff options
author | Astatin <[email protected]> | 2024-08-29 16:14:35 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-08-29 16:14:35 +0900 |
commit | 522bde7b7e7d70fc86a5dac2042b7b20e05c197b (patch) | |
tree | 01d3f81170c91debdf0784fa5c6255955730cd80 /main.gbasm | |
parent | 4a4ff1db8fe026ced0530f8c2531033da43164e6 (diff) |
Fix issues related to VBlank wait in sameboy + Add stairs interactions
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3,6 +3,8 @@ Entrypoint: CALL =Initialize_RNG +New_Dungeon: + LD SP, $fffe CALL =Dungeon_Generation CALL =Initialize_Bunny CALL =Initialize_Objects @@ -20,8 +22,11 @@ Entrypoint: VBLANK_Entrypoint: CALL =Display_Bunny + CALL =Display_Scrolling_Map CALL =Display_Objects + CALL =Object_Interactions_Check + CALL =Pad_Button_Check CALL =Move_Bunny |