mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-09-27 05:35:29 -04:00
b4596aafbe
Signed-off-by: Tauwasser <Tauwasser@tauwasser.eu>
16 lines
287 B
NASM
16 lines
287 B
NASM
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
|