mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-17 02:30:50 +12:00

Making Stereo the default was weirdly taxing. I don't know how or where this is usually initialised, I searched for like 2 hours and came up empty-handed...so I made a virus in the intro sequence instead. Tested with an empty save file. Fast text was just a case of adding it to defaultoptions. I have no idea how or why this worked, as it only seems to be called when save files corrupt, and adding the stereo bit there didn't let it work in the same way. Oh well...
19 lines
387 B
NASM
19 lines
387 B
NASM
DefaultOptions:
|
|
; wOptions: fast text speed
|
|
db TEXT_DELAY_FAST
|
|
; 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
|
|
.End
|
|
assert DefaultOptions.End - DefaultOptions == wOptionsEnd - wOptions
|