mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-08-08 19:25:24 -05:00
This uses catch-all files like main.asm to reduce the total quantity and size of build objects (from 1.1 GB to 70 MB). --------- Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
12 lines
192 B
NASM
12 lines
192 B
NASM
DisplayResetDialog::
|
|
ld hl, _ResetConfirmText
|
|
call MenuTextBox
|
|
call YesNoBox
|
|
jp nc, Reset
|
|
call CloseWindow
|
|
ret
|
|
|
|
_ResetConfirmText::
|
|
text "ほんとにリセットしますか?"
|
|
done
|