diff options
Diffstat (limited to 'engine/title.asm')
-rw-r--r-- | engine/title.asm | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/engine/title.asm b/engine/title.asm index 9df68ed..cd4e194 100644 --- a/engine/title.asm +++ b/engine/title.asm @@ -1,14 +1,11 @@ -SECTION "Title screen", ROMX[$5D8C],BANK[1] - IntroSequence:: ; 5d8c ; TODO -SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the section above +SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the main section above GameInit:: ; 62a5 - call ClearWindowData - ld a, $23 - ld [wce5f], a - jp IntroSequence - + call ClearWindowData + ld a, $23 + ld [wce5f], a + jp IntroSequence |