Get rid of unused variable

This commit is contained in:
Twinaphex 2015-05-08 09:36:12 +02:00
parent 45ffc24653
commit a057592263
1 changed files with 1 additions and 2 deletions

View File

@ -484,7 +484,6 @@ static void event_init_controllers(void)
static void event_deinit_core(bool reinit)
{
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
pretro_unload_game();
pretro_deinit();
@ -669,7 +668,7 @@ static bool event_init_core(void)
if (config_load_override())
global->overrides_active = true;
else
global->overrides_active = false;
global->overrides_active = false;
}
pretro_set_environment(rarch_environment_cb);