mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 07:13:35 +00:00
Put those beside each other now that we can do that.
This commit is contained in:
parent
7c0809a522
commit
86fa8279cb
36
retroarch.c
36
retroarch.c
@ -751,6 +751,13 @@ printf("test=%i\n",c);
|
||||
break;
|
||||
#endif
|
||||
|
||||
case RA_OPT_BPS:
|
||||
strlcpy(global->bps_name, optarg,
|
||||
sizeof(global->bps_name));
|
||||
global->bps_pref = true;
|
||||
global->has_set_bps_pref = true;
|
||||
break;
|
||||
|
||||
case 'U':
|
||||
strlcpy(global->ups_name, optarg,
|
||||
sizeof(global->ups_name));
|
||||
@ -758,6 +765,17 @@ printf("test=%i\n",c);
|
||||
global->has_set_ups_pref = true;
|
||||
break;
|
||||
|
||||
case RA_OPT_IPS:
|
||||
strlcpy(global->ips_name, optarg,
|
||||
sizeof(global->ips_name));
|
||||
global->ips_pref = true;
|
||||
global->has_set_ips_pref = true;
|
||||
break;
|
||||
|
||||
case RA_OPT_NO_PATCH:
|
||||
global->block_patch = true;
|
||||
break;
|
||||
|
||||
case 'D':
|
||||
#if defined(_WIN32) && !defined(_XBOX)
|
||||
FreeConsole();
|
||||
@ -800,24 +818,6 @@ printf("test=%i\n",c);
|
||||
sizeof(global->append_config_path));
|
||||
break;
|
||||
|
||||
case RA_OPT_BPS:
|
||||
strlcpy(global->bps_name, optarg,
|
||||
sizeof(global->bps_name));
|
||||
global->bps_pref = true;
|
||||
global->has_set_bps_pref = true;
|
||||
break;
|
||||
|
||||
case RA_OPT_IPS:
|
||||
strlcpy(global->ips_name, optarg,
|
||||
sizeof(global->ips_name));
|
||||
global->ips_pref = true;
|
||||
global->has_set_ips_pref = true;
|
||||
break;
|
||||
|
||||
case RA_OPT_NO_PATCH:
|
||||
global->block_patch = true;
|
||||
break;
|
||||
|
||||
case RA_OPT_SIZE:
|
||||
{
|
||||
if (sscanf(optarg, "%ux%u", &global->record.width,
|
||||
|
Loading…
x
Reference in New Issue
Block a user