Skip to content

Commit da8985e

Browse files
committed
Installer: Fix for not escaping backslash
1 parent 74d5cc8 commit da8985e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

StreamDeckSimHub.Installer/Tools/Configuration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static class Configuration
2424

2525
public const string SimHubRegistryFolder = @"HKEY_CURRENT_USER\Software\SimHub";
2626
public const string SimHubRegistryInstallFolder = "InstallDirectory";
27-
public static readonly string SimHubDefaultInstallFolder = Path.Combine("C:\", "Program Files (x86)", "SimHub");
27+
public static readonly string SimHubDefaultInstallFolder = Path.Combine(@"C:\", "Program Files (x86)", "SimHub");
2828

2929
public const string SimHubPluginUrl = "https://github.com/pre-martin/SimHubPropertyServer";
3030
public static readonly Version RequiredSimHubPluginVersion = new Version(1, 13, 0);

0 commit comments

Comments
 (0)