From 39983f8144aa70e8136c9cbe9af68159578e66df Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Jun 2021 18:50:10 +1000 Subject: [PATCH] - Fix maps loaded from the command line starting with corrupted sectors. * Starting game same way `map` CCMD does it for now. --- source/core/mainloop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/mainloop.cpp b/source/core/mainloop.cpp index 6dbf14db9..ce1ff3172 100644 --- a/source/core/mainloop.cpp +++ b/source/core/mainloop.cpp @@ -688,7 +688,7 @@ void MainLoop () userConfig.CommandMap = ""; if (maprecord) { - NewGame(maprecord, /*userConfig.skill*/2); // todo: fix the skill. + DeferedStartGame(maprecord, -1); } }