mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-26 21:15:11 -06:00
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:
parent
b6121b2c39
commit
e19e3b62c3
@ -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':
|
||||
|
||||
Loading…
Reference in New Issue
Block a user