lime_sdl: Fixed -d option not being perceived as valid

Again, this appears to be another mistake left by the original Citra developers
This commit is contained in:
OpenSauce04 2024-10-22 15:48:13 +01:00
parent b6121b2c39
commit e19e3b62c3

View File

@ -231,7 +231,7 @@ void LaunchSdlFrontend(int argc, char** argv) {
};
while (optind < argc) {
int arg = getopt_long(argc, argv, "fg:hi:p:r:a:m:vw", long_options, &option_index);
int arg = getopt_long(argc, argv, "d:fg:hi:p:r:a:m:vw", long_options, &option_index);
if (arg != -1) {
switch (static_cast<char>(arg)) {
case 'd':