Revert "(retroarch.c) Default to --menu behavior"

This reverts commit 34af0aa956.
This commit is contained in:
Higor Eurípedes 2015-06-12 15:20:48 -03:00
parent e9cbfb15b1
commit 258cc97d14

View File

@ -399,11 +399,7 @@ static void parse_input(int argc, char *argv[])
global_t *global = global_get_ptr();
global->libretro_no_content = false;
#ifdef HAVE_DYNAMIC
global->libretro_dummy = true;
#else
global->libretro_dummy = false;
#endif
global->has_set_save_path = false;
global->has_set_state_path = false;
global->has_set_libretro = false;
@ -430,6 +426,12 @@ static void parse_input(int argc, char *argv[])
global->overrides_active = false;
if (argc < 2)
{
global->libretro_dummy = true;
return;
}
/* Make sure we can call parse_input several times ... */
optind = 0;
@ -620,7 +622,6 @@ static void parse_input(int argc, char *argv[])
sizeof(settings->libretro));
global->has_set_libretro = true;
}
global->libretro_dummy = false;
break;
#endif
case 'P':