aboutsummaryrefslogtreecommitdiff
path: root/overrides
diff options
context:
space:
mode:
authorneonloop2021-09-07 15:08:27 +0000
committerneonloop2021-09-07 15:08:27 +0000
commit5d178649a6af2963e86e67613470fc31d64e5454 (patch)
treec2aee65357e2dfd11796beeda20705da520ff98e /overrides
parent7032dd1ce78e03f1f50475be76ef8b5c642c9d01 (diff)
downloadpicoarch-5d178649a6af2963e86e67613470fc31d64e5454.tar.gz
picoarch-5d178649a6af2963e86e67613470fc31d64e5454.tar.bz2
picoarch-5d178649a6af2963e86e67613470fc31d64e5454.zip
Hide "Load new game" in mame2000
It breaks if you unload a game and then try to run a new game, so the option should be hidden.
Diffstat (limited to 'overrides')
-rw-r--r--overrides/mame2000.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/overrides/mame2000.h b/overrides/mame2000.h
index 0c2bbfa..f3912f7 100644
--- a/overrides/mame2000.h
+++ b/overrides/mame2000.h
@@ -68,5 +68,6 @@ const struct core_override_fast_forward mame2000_fast_forward = {
.fast_forward = &mame2000_fast_forward, \
.actions = mame2000_ctrl_actions, \
.action_size = array_size(mame2000_ctrl_actions), \
- .options = mame2000_core_option_overrides \
+ .options = mame2000_core_option_overrides, \
+ .block_load_content = 1 \
}