diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-26 20:42:31 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-26 20:42:31 -0400 |
commit | b5adfd8bce12afb885d6bb6a347d25e33be602af (patch) | |
tree | 09cd67394b3f8f427a63086c929be151525e62ed /src/SMAPI.Installer | |
parent | 73c389df74a8df796b3c1cacf2c035ac7e34a063 (diff) | |
download | SMAPI-b5adfd8bce12afb885d6bb6a347d25e33be602af.tar.gz SMAPI-b5adfd8bce12afb885d6bb6a347d25e33be602af.tar.bz2 SMAPI-b5adfd8bce12afb885d6bb6a347d25e33be602af.zip |
add more default game install paths
Diffstat (limited to 'src/SMAPI.Installer')
-rw-r--r-- | src/SMAPI.Installer/InteractiveInstaller.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs index 7f7acb0b..e6e71cf4 100644 --- a/src/SMAPI.Installer/InteractiveInstaller.cs +++ b/src/SMAPI.Installer/InteractiveInstaller.cs @@ -55,8 +55,12 @@ namespace StardewModdingApi.Installer case Platform.Windows: { // Windows - yield return @"C:\Program Files (x86)\GalaxyClient\Games\Stardew Valley"; - yield return @"C:\Program Files (x86)\Steam\steamapps\common\Stardew Valley"; + foreach (string programFiles in new[] { @"C:\Program Files", @"C:\Program Files (x86)" }) + { + yield return $@"{programFiles}\GalaxyClient\Games\Stardew Valley"; + yield return $@"{programFiles}\GOG Galaxy\Games\Stardew Valley"; + yield return $@"{programFiles}\Steam\steamapps\common\Stardew Valley"; + } // Windows registry IDictionary<string, string> registryKeys = new Dictionary<string, string> |