Use SDL.SDL_OpenURL instead of Process.Start to open FAQ and Logs

This commit is contained in:
abcdefg30
2022-09-16 10:54:18 +02:00
committed by Gustas
parent 6bd631618c
commit a75818026a

View File

@@ -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;