diff options
author | Astatin <[email protected]> | 2024-09-10 17:21:56 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-09-10 17:21:56 +0900 |
commit | 240deda011c7ad562507759c1839d8ece785de77 (patch) | |
tree | 1853df786794da9eb8c2b096b31147925c325989 /main.gbasm | |
parent | c3d302cd8332d55bb477b5e93ea0f6027d26c632 (diff) |
Use DMA OAM transfer to write entities to OAM
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,7 @@ New_Dungeon: VBLANK_Entrypoint: CALL =Display_Prepared_Block CALL =Display_Object - CALL =Display_Entities + CALL $OAM_DMA_Transfer_routine CALL =Object_Interactions_Check @@ -32,6 +32,7 @@ VBLANK_Entrypoint: CALL =Move_Bunny CALL =Prepare_Scrolling_Map + CALL =Prepare_Entities RET .INCLUDE "tiles.gbasm" |