From e7a7b596eb0e880a9f5221b5fb9f0a2c1573b096 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sun, 24 Sep 2023 20:32:20 -0400 Subject: [PATCH] Fix Change Langauge --- oscar/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oscar/main.cpp b/oscar/main.cpp index b481298e..746189e7 100644 --- a/oscar/main.cpp +++ b/oscar/main.cpp @@ -303,6 +303,7 @@ void optionExit(int exitCode, QString error) { --help Displays this menu and exits. --hires Enables high Resolution --hiresoff Disables high Resolution + -l or --nop internal call to main from OSCAR. )" ); exit (exitCode); } @@ -400,6 +401,8 @@ int main(int argc, char *argv[]) { for (int i = 1; i < args.size(); i++) { if ((args[i] == "--language") || (args[i] == "--l") ) { settings.setValue(LangSetting,""); + } else if ( (args[i] == "-l") || (args[i] == "--nop")){ + // do nothing. internal call to change language. } else if (args[i] == "-p") { QThread::msleep(1000); } else if (args[i] == "--profile") {