From 51ac125f657e8707460a6878dcb3a52203dfc027 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sat, 28 Sep 2013 22:30:02 +0200 Subject: [PATCH] (GX) Per-core input config loading/saving is now part of RGUI - get rid of this --- frontend/frontend.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/frontend/frontend.c b/frontend/frontend.c index 2048f392bd..c65796a18c 100644 --- a/frontend/frontend.c +++ b/frontend/frontend.c @@ -111,15 +111,6 @@ void rarch_get_environment_console(void) #endif } #endif - -#ifdef GEKKO - /* Per-core input config loading */ - char core_name[64]; - - libretro_get_current_core_pathname(core_name, sizeof(core_name)); - snprintf(g_extern.input_config_path, sizeof(g_extern.input_config_path), "%s/%s.cfg", default_paths.input_presets_dir, core_name); - config_read_keybinds(g_extern.input_config_path); -#endif } #endif @@ -256,11 +247,6 @@ int main_entry(int argc, char *argv[]) if (g_extern.config_save_on_exit && *g_extern.config_path) config_save_file(g_extern.config_path); -#ifdef GEKKO - /* Per-core input config saving */ - config_save_keybinds(g_extern.input_config_path); -#endif - #ifdef RARCH_CONSOLE global_uninit_drivers(); #endif