1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00
This commit is contained in:
twinaphex 2016-06-05 19:39:57 +02:00
parent 7ea0a19a4f
commit 1d3d07ad7d

View File

@ -1373,7 +1373,6 @@ bool rarch_ctl(enum rarch_ctl_state state, void *data)
static bool rarch_error_on_init = false;
static bool rarch_block_config_read = false;
static bool rarch_force_fullscreen = false;
global_t *global = global_get_ptr();
settings_t *settings = config_get_ptr();
switch(state)
@ -1468,8 +1467,13 @@ bool rarch_ctl(enum rarch_ctl_state state, void *data)
retroarch_set_paths_redirect();
break;
case RARCH_CTL_SET_SRAM_ENABLE:
global->sram.use = rarch_ctl(RARCH_CTL_IS_PLAIN_CORE, NULL)
&& !content_does_not_need_content();
{
global_t *global = global_get_ptr();
if (global)
global->sram.use = rarch_ctl(RARCH_CTL_IS_PLAIN_CORE, NULL)
&& !content_does_not_need_content();
}
break;
case RARCH_CTL_SET_ERROR_ON_INIT:
rarch_error_on_init = true;