Skip to content

Commit 8afc098

Browse files
committed
enable quickboot by default for dev builds
1 parent 9fc1e0f commit 8afc098

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: src/init.asm

+6-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ init_sram:
9797
TDC : STA !sram_top_display_mode
9898
STA !sram_room_layout
9999
INC : STA !sram_healthalarm
100-
LDA #$0003 : STA !sram_cutscenes
100+
101+
if !FEATURE_DEV
102+
LDA !CUTSCENE_QUICKBOOT : STA !sram_cutscenes
103+
else
104+
LDA !CUTSCENE_QUICKBOOT|$0003 : STA !sram_cutscenes
105+
endif
101106

102107
.sram_upgrade_CtoD
103108
TDC : STA !sram_preset_options

0 commit comments

Comments
 (0)