aboutsummaryrefslogtreecommitdiff
path: root/overrides
diff options
context:
space:
mode:
authorneonloop2023-01-30 15:56:43 +0000
committerneonloop2023-01-30 15:56:43 +0000
commit3fc837c6eb2d087f303b60f155ce00b0e8f3998f (patch)
tree90dc8b718f59de7c04edfb0fa4bf91f188831595 /overrides
parent436f55f7975cf6ab5c8308c5071086047b46201e (diff)
downloadpicoarch-3fc837c6eb2d087f303b60f155ce00b0e8f3998f.tar.gz
picoarch-3fc837c6eb2d087f303b60f155ce00b0e8f3998f.tar.bz2
picoarch-3fc837c6eb2d087f303b60f155ce00b0e8f3998f.zip
Adds override for deferring load state by number of frames
Fixes instant play for fake-08 and pcsx_rearmmed with bios intro
Diffstat (limited to 'overrides')
-rw-r--r--overrides/fake-08.h1
-rw-r--r--overrides/pcsx_rearmed.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/overrides/fake-08.h b/overrides/fake-08.h
index 8773958..8dfa02c 100644
--- a/overrides/fake-08.h
+++ b/overrides/fake-08.h
@@ -16,4 +16,5 @@ me_bind_action fake08_ctrl_actions[] =
.core_name = "fake-08", \
.actions = fake08_ctrl_actions, \
.action_size = array_size(fake08_ctrl_actions), \
+ .defer_frames = 3, \
}
diff --git a/overrides/pcsx_rearmed.h b/overrides/pcsx_rearmed.h
index d5b20d7..c1d92b9 100644
--- a/overrides/pcsx_rearmed.h
+++ b/overrides/pcsx_rearmed.h
@@ -256,4 +256,5 @@ const struct core_override_startup_msg pcsx_rearmed_startup_msg = {
.actions = pcsx_rearmed_ctrl_actions, \
.action_size = array_size(pcsx_rearmed_ctrl_actions), \
.options = pcsx_rearmed_core_option_overrides, \
+ .defer_frames = 3, \
}