From e7e7a830c17d183622b8b52ce48a4efecbd783b0 Mon Sep 17 00:00:00 2001 From: Ben McClure Date: Sun, 4 Apr 2021 03:49:19 -0400 Subject: [PATCH] Fix warning on Add Game window --- Lib/Launchpad/Window/Form/LauncherWizard.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/Launchpad/Window/Form/LauncherWizard.ahk b/Lib/Launchpad/Window/Form/LauncherWizard.ahk index 088ea11e..865ca946 100644 --- a/Lib/Launchpad/Window/Form/LauncherWizard.ahk +++ b/Lib/Launchpad/Window/Form/LauncherWizard.ahk @@ -14,7 +14,7 @@ Controls() { super.Controls() this.AddComboBox("Key", "Key", "", this.knownGames, "Select an existing game from the API, or enter a custom game key to create your own. If choosing an existing game, most advanced values can be loaded from the API.") - this.Add("SelectControl", "", "Platform", defaultPlatform, this.knownPlatforms, "", "Select the platform that this game is run through.") + this.Add("SelectControl", "", "Platform", this.defaultPlatform, this.knownPlatforms, "", "Select the platform that this game is run through.") this.Add("LocationBlock", "", "Install Dir", this.installDir, "InstallDir", "", true, "Select the directory the game is installed in") this.Add("LocationBlock", "", "Game Exe", this.exe, "Exe", "", true, "Select the game's main .exe file") }