From 31a91a0269071bfd66f764608ee24eb095d84125 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 13 Mar 2017 09:50:02 +0000 Subject: [PATCH] Allow FAQ URL to be customized. --- packaging/windows/WindowsLauncher.cs.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 { } }