mirror of
https://github.com/libretro/RetroArch
synced 2025-03-30 07:20:36 +00:00
Fix SET_SUPPORTS_NO_GAME cores
This commit is contained in:
parent
932a8c3e5d
commit
59d4cfcfd0
@ -622,13 +622,12 @@ static void event_set_savestate_auto_index(void)
|
|||||||
|
|
||||||
static bool event_init_content(void)
|
static bool event_init_content(void)
|
||||||
{
|
{
|
||||||
driver_t *driver = driver_get_ptr();
|
|
||||||
global_t *global = global_get_ptr();
|
global_t *global = global_get_ptr();
|
||||||
|
|
||||||
/* No content to be loaded for dummy core,
|
/* No content to be loaded for dummy core,
|
||||||
* just successfully exit. */
|
* just successfully exit. */
|
||||||
if (global->libretro_dummy)
|
if (global->libretro_dummy)
|
||||||
goto end;
|
return true;
|
||||||
|
|
||||||
if (!global->libretro_no_content)
|
if (!global->libretro_no_content)
|
||||||
rarch_fill_pathnames();
|
rarch_fill_pathnames();
|
||||||
@ -648,16 +647,13 @@ static bool event_init_content(void)
|
|||||||
event_command(EVENT_CMD_BSV_MOVIE_INIT);
|
event_command(EVENT_CMD_BSV_MOVIE_INIT);
|
||||||
event_command(EVENT_CMD_NETPLAY_INIT);
|
event_command(EVENT_CMD_NETPLAY_INIT);
|
||||||
|
|
||||||
end:
|
|
||||||
retro_init_libretro_cbs(&driver->retro_ctx);
|
|
||||||
rarch_init_system_av_info();
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool event_init_core(void)
|
static bool event_init_core(void)
|
||||||
{
|
{
|
||||||
global_t *global = global_get_ptr();
|
global_t *global = global_get_ptr();
|
||||||
|
driver_t *driver = driver_get_ptr();
|
||||||
settings_t *settings = config_get_ptr();
|
settings_t *settings = config_get_ptr();
|
||||||
|
|
||||||
if(settings->auto_overrides_enable)
|
if(settings->auto_overrides_enable)
|
||||||
@ -682,6 +678,9 @@ static bool event_init_core(void)
|
|||||||
if (!event_init_content())
|
if (!event_init_content())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
retro_init_libretro_cbs(&driver->retro_ctx);
|
||||||
|
rarch_init_system_av_info();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user