diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
commit | a1951cefc09035e11077a433b28ec8c66b3b03db (patch) | |
tree | 4de98db5a6edb6d74192028d50893da2b764421f /data/default_options.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
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 |