mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-26 00:05:12 -05:00
Main menu: New Game starts a new game, Play Pokémon starts the demo.
This commit is contained in:
parent
683e15a0c4
commit
8270797280
|
|
@ -141,7 +141,7 @@ MainMenuJumptable: ; 01:5457
|
|||
dw MainMenuOptionContinue
|
||||
dw StartNewGame
|
||||
dw MenuCallSettings
|
||||
dw StartNewGame
|
||||
dw StartDemo
|
||||
dw MainMenuOptionSetTime
|
||||
|
||||
MainMenuItems:
|
||||
|
|
@ -260,6 +260,12 @@ PlayerInfoText:
|
|||
text_end
|
||||
|
||||
StartNewGame:: ; 555C
|
||||
ld a,1
|
||||
jp StartGame
|
||||
StartDemo::
|
||||
xor a
|
||||
StartGame::
|
||||
push af
|
||||
ld de, MUSIC_NONE
|
||||
call PlayMusic
|
||||
ld de, MUSIC_OAK_INTRO
|
||||
|
|
@ -272,10 +278,9 @@ StartNewGame:: ; 555C
|
|||
call ClearWindowData
|
||||
xor a
|
||||
ldh [hMapAnims], a
|
||||
ld a, [wDebugFlags]
|
||||
bit DEBUG_FIELD_F, a
|
||||
pop af
|
||||
and a
|
||||
jp z, DemoStart
|
||||
call DebugSetUpPlayer
|
||||
jp IntroCleanup
|
||||
jp GameStart
|
||||
|
||||
; 558D
|
||||
Loading…
Reference in New Issue
Block a user