1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Only enable interactive console for headless

This commit is contained in:
Ted John
2018-03-11 22:28:43 +00:00
parent dd0573b235
commit f7dafa9bbb

View File

@@ -630,7 +630,11 @@ namespace OpenRCT2
}
#endif // DISABLE_NETWORK
_stdInOutConsole.Start();
// For now, only allow interactive console in headless mode
if (gOpenRCT2Headless)
{
_stdInOutConsole.Start();
}
RunGameLoop();
}