mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-21 17:45:52 -05:00
Some checks failed
CI / build (push) Has been cancelled
* Add Katakana `リ`, `ヘ`, `ベ`, `ペ` in charmap and text strings * Format text strings, using macro where possible * Remove unused charmap entries, name `Function3036` * Charmap update and reorder, `TextAsmEnd`
16 lines
263 B
NASM
16 lines
263 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "engine/menu/reset_dialog.asm", ROMX
|
|
|
|
DisplayResetDialog::
|
|
ld hl, _ResetConfirmText
|
|
call MenuTextBox
|
|
call YesNoBox
|
|
jp nc, Reset
|
|
call CloseWindow
|
|
ret
|
|
|
|
_ResetConfirmText::
|
|
text "ほんとにリセットしますか?"
|
|
done
|