(iOS) Save to ROM history when loading game from Cocoa interface
This commit is contained in:
parent
978ce1dc49
commit
2c5be4ad56
|
@ -100,6 +100,11 @@ void* rarch_main_ios(void* args)
|
||||||
menu_init();
|
menu_init();
|
||||||
g_extern.lifecycle_mode_state |= 1ULL << MODE_GAME;
|
g_extern.lifecycle_mode_state |= 1ULL << MODE_GAME;
|
||||||
|
|
||||||
|
// If we started a ROM directly from command line,
|
||||||
|
// push it to ROM history.
|
||||||
|
if (!g_extern.libretro_dummy)
|
||||||
|
menu_rom_history_push_current();
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
if (g_extern.system.shutdown)
|
if (g_extern.system.shutdown)
|
||||||
|
|
Loading…
Reference in New Issue