From e19e3b62c314eabcecd56958ed066b4ebecfb088 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 22 Oct 2024 15:48:13 +0100 Subject: [PATCH] lime_sdl: Fixed `-d` option not being perceived as valid Again, this appears to be another mistake left by the original Citra developers --- src/lime_sdl/lime_sdl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime_sdl/lime_sdl.cpp b/src/lime_sdl/lime_sdl.cpp index cee9afad6..a46b50ec6 100644 --- a/src/lime_sdl/lime_sdl.cpp +++ b/src/lime_sdl/lime_sdl.cpp @@ -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(arg)) { case 'd':