mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-26 21:15:11 -06:00
lime_sdl: Fixed -a not being considered a valid option
This is an oopsie from the original Citra developers
This commit is contained in:
parent
3c03b2b39f
commit
129387efbe
@ -231,7 +231,7 @@ void LaunchSdlFrontend(int argc, char** argv) {
|
||||
};
|
||||
|
||||
while (optind < argc) {
|
||||
int arg = getopt_long(argc, argv, "g:i:m:nr:p:fhvw", long_options, &option_index);
|
||||
int arg = getopt_long(argc, argv, "ag:i:m:nr:p:fhvw", long_options, &option_index);
|
||||
if (arg != -1) {
|
||||
switch (static_cast<char>(arg)) {
|
||||
case 'g':
|
||||
|
||||
Loading…
Reference in New Issue
Block a user