pokecrystal-board/data/default_options.asm

17 lines
309 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
DefaultOptions:
2018-01-23 14:39:09 -08:00
; wOptions: med text speed
db TEXT_DELAY_MED
; wSaveFileExists: no
db $00
2018-01-23 14:39:09 -08:00
; wTextBoxFrame: frame 1
db FRAME_1
2018-01-23 14:39:09 -08:00
; wTextBoxFlags: use text speed
2017-12-29 10:29:24 -08:00
db 1 << FAST_TEXT_DELAY_F
2018-01-23 14:39:09 -08:00
; wGBPrinter: normal brightness
db GBPRINTER_NORMAL
2018-01-23 14:39:09 -08:00
; wOptions2: menu account on
2017-12-29 10:18:17 -08:00
db 1 << MENU_ACCOUNT
2018-01-18 18:48:52 -08:00
db $00
db $00