Skip to content

Commit

Permalink
Fix warning on Add Game window
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcclure committed Apr 4, 2021
1 parent b271fc7 commit e7e7a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/Launchpad/Window/Form/LauncherWizard.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit e7e7a83

Please sign in to comment.