summaryrefslogtreecommitdiff
path: root/data/default_options.asm
diff options
context:
space:
mode:
authorentrpntr <entrpntr@gmail.com>2020-04-10 16:41:38 -0400
committerentrpntr <entrpntr@gmail.com>2020-04-10 16:41:38 -0400
commit48c658ccdbb1c79608f805264c83a39d20c60817 (patch)
treef59119880326e96b84469957e4899e596ab37c90 /data/default_options.asm
parent18df0a5e3742278c8c373b196b47427f713a865d (diff)
Add engine/menus/save.asm, and some other files.
Diffstat (limited to 'data/default_options.asm')
-rw-r--r--data/default_options.asm16
1 files changed, 16 insertions, 0 deletions
diff --git a/data/default_options.asm b/data/default_options.asm
new file mode 100644
index 00000000..00fcfa10
--- /dev/null
+++ b/data/default_options.asm
@@ -0,0 +1,16 @@
+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