(frontend_android) Revert

This commit is contained in:
twinaphex 2013-08-14 04:36:47 +02:00
parent 0bbd9699b4
commit 1e14cbafd4
1 changed files with 3 additions and 8 deletions

View File

@ -154,14 +154,9 @@ static bool android_app_start_main(struct android_app *android_app)
menu_init();
if *(g_extern.fullpath)
{
ret = load_menu_game();
if (ret)
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
}
else
g_extern.lifecycle_mode_state |= (1ULL << MODE_MENU);
ret = load_menu_game();
if (ret)
g_extern.lifecycle_mode_state |= (1ULL << MODE_GAME);
return ret;
}