mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-09-26 13:32:48 -04:00
e1659ecd41
Addresses of sections will now be added to the linkerscript via `org`, and the section name will be the path/to/file. If there is more than one section in the file, then add a @SectionName after the path/to/file to describe the section.
15 lines
280 B
NASM
15 lines
280 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "engine/menu/reset_dialog.asm", ROMX
|
|
|
|
DisplayResetDialog:: ; fc362 (3f:4362)
|
|
ld hl, _ResetConfirmText
|
|
call MenuTextBox
|
|
call YesNoBox
|
|
jp nc, Reset
|
|
call CloseWindow
|
|
ret
|
|
|
|
_ResetConfirmText::
|
|
text "ほんとにりセットしますか?"
|
|
done |