You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We're going to hijack the existing session and load a new savegame into it. This will mainly occur when users click on links in Bugzilla that will automatically copy saves and load them
1397
1404
// directly from the web browser. The -hijack command prevents the launcher from objecting that there is already an instance of the game.
1398
1405
if (CommandLine()->CheckParm( "-hijack" ))
@@ -1430,20 +1437,20 @@ DLL_EXPORT int LauncherMain( int argc, char **argv )
1430
1437
}
1431
1438
else
1432
1439
{
1433
-
if (!multiRun) {
1440
+
if (!g_MultiRun) {
1434
1441
::MessageBox(NULL, "Only one instance of the game can be running at one time.", "Source - Warning", MB_ICONINFORMATION | MB_OK);
1435
1442
}
1436
1443
}
1437
1444
1438
-
if (!multiRun) {
1445
+
if (!g_MultiRun) {
1439
1446
return retval;
1440
1447
}
1441
1448
}
1442
1449
}
1443
1450
#elif defined( POSIX )
1444
1451
else
1445
1452
{
1446
-
if ( !GrabSourceMutex() )
1453
+
if ( !GrabSourceMutex() && !g_MultiRun )
1447
1454
{
1448
1455
::MessageBox(NULL, "Only one instance of the game can be running at one time.", "Source - Warning", 0 );
0 commit comments