Dont open console window when -gimp is used, #5084

This commit is contained in:
heckflosse
2018-12-27 11:41:14 +01:00
parent 42beee886b
commit e98d4e2f07

View File

@@ -536,7 +536,7 @@ int main (int argc, char **argv)
bool Console = true; bool Console = true;
for (int i = 1; i < argc; i++) for (int i = 1; i < argc; i++)
if (!strcmp (argv[i], "-w") || !strcmp (argv[i], "-R")) { if (!strcmp (argv[i], "-w") || !strcmp (argv[i], "-R") || !strcmp (argv[i], "-gimp")) {
Console = false; Console = false;
break; break;
} }