diff --git a/packaging/windows/WindowsLauncher.cs.in b/packaging/windows/WindowsLauncher.cs.in index 1912e1cc9c..1c2164c6f3 100644 --- a/packaging/windows/WindowsLauncher.cs.in +++ b/packaging/windows/WindowsLauncher.cs.in @@ -27,6 +27,7 @@ namespace OpenRA // Constants to be replaced by the wrapper / compilation script const string DisplayName = "DISPLAY_NAME"; + const string FaqUrl = "FAQ_URL"; [STAThread] static void Main(string[] args) @@ -158,7 +159,7 @@ namespace OpenRA { try { - Process.Start("http://wiki.openra.net/FAQ"); + Process.Start(FaqUrl); } catch { } }