diff options
author | yenatch <yenatch@gmail.com> | 2018-02-03 17:15:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-03 17:15:20 -0500 |
commit | b35eb72290b964b98844afbe741bb7ede34b9ef3 (patch) | |
tree | 2cf2652bc9c3e69ae5f7b2a2632c02a12498615f /data/default_options.asm | |
parent | 7547ad839cf1c8141b931d08ef16a894e7db68c9 (diff) | |
parent | 32ade4ac9bf113d630d904aab51f2c49c91bf8c2 (diff) |
Merge pull request #480 from luckytyphlosion/master
[Ready to merge] Prefix wram labels with w.
Diffstat (limited to 'data/default_options.asm')
-rw-r--r-- | data/default_options.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/default_options.asm b/data/default_options.asm index 4717dc2f0..7a4f77128 100644 --- a/data/default_options.asm +++ b/data/default_options.asm @@ -1,15 +1,15 @@ DefaultOptions: ; 14f7c -; Options: med text speed +; wOptions: med text speed db TEXT_DELAY_MED ; wSaveFileExists: no db $00 -; TextBoxFrame: frame 1 +; wTextBoxFrame: frame 1 db FRAME_1 -; TextBoxFlags: use text speed +; wTextBoxFlags: use text speed db 1 << FAST_TEXT_DELAY_F -; GBPrinter: normal brightness +; wGBPrinter: normal brightness db GBPRINTER_NORMAL -; Options2: menu account on +; wOptions2: menu account on db 1 << MENU_ACCOUNT db $00 |