engine: disassemble reset dialog

Signed-off-by: Tauwasser <Tauwasser@tauwasser.eu>
This commit is contained in:
Tauwasser
2018-06-12 22:13:43 +02:00
parent 6ab74f9884
commit b4596aafbe

View File

@@ -0,0 +1,15 @@
INCLUDE "constants.asm"
SECTION "Debug Reset Menu", ROMX[$4362], BANK[$3F]
DisplayResetDialog:: ; fc362 (3f:4362)
ld hl, _ResetConfirmText
call MenuTextBox
call YesNoBox
jp nc, Reset
call CloseWindow
ret
_ResetConfirmText::
text "ほんとにりセットしますか?"
done