From a75818026a345e8a1f7e0ebeb8bd19661f796ce0 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Fri, 16 Sep 2022 10:54:18 +0200 Subject: [PATCH] Use SDL.SDL_OpenURL instead of Process.Start to open FAQ and Logs --- OpenRA.WindowsLauncher/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.WindowsLauncher/Program.cs b/OpenRA.WindowsLauncher/Program.cs index 00748d1489..2336b79b32 100644 --- a/OpenRA.WindowsLauncher/Program.cs +++ b/OpenRA.WindowsLauncher/Program.cs @@ -167,7 +167,7 @@ namespace OpenRA.WindowsLauncher { try { - Process.Start(faqUrl); + SDL.SDL_OpenURL(faqUrl); } catch { } break; @@ -177,7 +177,7 @@ namespace OpenRA.WindowsLauncher { try { - Process.Start(Path.Combine(Platform.SupportDir, "Logs")); + SDL.SDL_OpenURL(Path.Combine(Platform.SupportDir, "Logs")); } catch { } break;