Put those beside each other now that we can do that.

This commit is contained in:
Alcaro 2015-06-30 22:43:41 +02:00
parent 7c0809a522
commit 86fa8279cb

View File

@ -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,