summaryrefslogtreecommitdiff
path: root/engine/menu/reset_dialog.asm
blob: 5c676a727aed59d92403d7ed0a0c6aee1b4af29e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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