Only for testing: game name and location will come from command line arguments

This commit is contained in:
erri120 2019-11-04 18:08:49 +01:00 committed by Timothy Baldridge
parent 22dbc7cab3
commit 6a4600dcc1

View File

@ -198,7 +198,8 @@ namespace Wabbajack
{
if (true)
{
var compiler = new VortexCompiler("darkestdungeon", "S:\\SteamLibrary\\steamapps\\common\\DarkestDungeon");
string[] args = Environment.GetCommandLineArgs();
var compiler = new VortexCompiler(args[1], args[2]);
await Task.Run(() =>
{
UIReady = false;