pokecrystal/data/default_options.asm

17 lines
311 B
NASM
Raw Normal View History

2018-06-24 14:09:41 +00:00
DefaultOptions:
2018-01-23 22:39:09 +00:00
; wOptions: med text speed
db TEXT_DELAY_MED
; wSaveFileExists: no
2018-07-04 06:50:27 +00:00
db FALSE
2019-04-08 12:15:10 +00:00
; wTextboxFrame: frame 1
db FRAME_1
2019-04-08 12:15:10 +00:00
; wTextboxFlags: use text speed
2017-12-29 18:29:24 +00:00
db 1 << FAST_TEXT_DELAY_F
2018-01-23 22:39:09 +00:00
; wGBPrinter: normal brightness
db GBPRINTER_NORMAL
2018-01-23 22:39:09 +00:00
; wOptions2: menu account on
2017-12-29 18:18:17 +00:00
db 1 << MENU_ACCOUNT
2018-01-19 02:48:52 +00:00
db $00
db $00