mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
(retroarch.c) Default to --menu behavior
This commit is contained in:
parent
f9d01a079a
commit
34af0aa956
11
retroarch.c
11
retroarch.c
@ -399,7 +399,11 @@ 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;
|
||||
@ -426,12 +430,6 @@ 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;
|
||||
|
||||
@ -622,6 +620,7 @@ static void parse_input(int argc, char *argv[])
|
||||
sizeof(settings->libretro));
|
||||
global->has_set_libretro = true;
|
||||
}
|
||||
global->libretro_dummy = false;
|
||||
break;
|
||||
#endif
|
||||
case 'P':
|
||||
|
Loading…
x
Reference in New Issue
Block a user