lime_sdl: Fixed -a not being considered a valid option

This is an oopsie from the original Citra developers
This commit is contained in:
OpenSauce04 2024-10-19 23:50:38 +01:00
parent 3c03b2b39f
commit 129387efbe

View File

@ -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':