From f05da5c0e1c1ac9aac86e1ca6ec2751f2c570693 Mon Sep 17 00:00:00 2001 From: dankcushions Date: Sun, 19 Feb 2017 18:54:35 +0000 Subject: [PATCH] Default game_specific_options to true. This is the core-option overrides functionality. If the user hasn't created any override files, they won't be used. Seems to me like there's no harm in defaulting this to on. --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 82a99c79b5..7b03437332 100644 --- a/config.def.h +++ b/config.def.h @@ -652,7 +652,7 @@ static const uint32_t menu_title_color = 0xff64ff64; static bool default_block_config_read = false; #endif -static bool default_game_specific_options = false; +static bool default_game_specific_options = true; static bool default_auto_overrides_enable = true; static bool default_auto_remaps_enable = true; static bool default_auto_shaders_enable = true;