Do not show console window when started in remote mode (-R)

This commit is contained in:
heckflosse
2018-12-11 13:26:12 +01:00
parent 71dcf2ca1a
commit ad2fc472ef

View File

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