mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
40902ffe24
This was discussed in #706 It also uncovered some off-by-one issues with defining some constants. A few structs now use rsreset/_RS to define their offset constants, as discussed in #739
19 lines
385 B
NASM
19 lines
385 B
NASM
DefaultOptions:
|
|
; wOptions: med text speed
|
|
db TEXT_DELAY_MED
|
|
; wSaveFileExists: no
|
|
db FALSE
|
|
; wTextboxFrame: frame 1
|
|
db FRAME_1
|
|
; wTextboxFlags: use text speed
|
|
db 1 << FAST_TEXT_DELAY_F
|
|
; wGBPrinterBrightness: normal
|
|
db GBPRINTER_NORMAL
|
|
; wOptions2: menu account on
|
|
db 1 << MENU_ACCOUNT
|
|
|
|
db $00
|
|
db $00
|
|
.End
|
|
assert DefaultOptions.End - DefaultOptions == wOptionsEnd - wOptions
|