mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 06:44:27 +00:00
Cover edge case - if this would return false, this would not be
set to false, and as a result, Load Core would not show
This commit is contained in:
parent
5b04350376
commit
297f2b3050
@ -3864,7 +3864,10 @@ static bool event_init_content(void)
|
|||||||
path_fill_names();
|
path_fill_names();
|
||||||
|
|
||||||
if (!content_init())
|
if (!content_init())
|
||||||
|
{
|
||||||
|
runloop_core_running = false;
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
command_event_set_savestate_auto_index();
|
command_event_set_savestate_auto_index();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user