From 476eafc66fba58a83a210e9f357e949b362e2ae5 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 17 Jan 2021 23:32:20 +1000 Subject: [PATCH] Slightly change wording on prereq checker error message --- src/BizHawk.Client.EmuHawk/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.EmuHawk/Program.cs b/src/BizHawk.Client.EmuHawk/Program.cs index 39f1be77a9..a177814e57 100644 --- a/src/BizHawk.Client.EmuHawk/Program.cs +++ b/src/BizHawk.Client.EmuHawk/Program.cs @@ -40,7 +40,7 @@ namespace BizHawk.Client.EmuHawk var p = OSTC.LinkedLibManager.LoadOrZero(dllToLoad); if (p == IntPtr.Zero) { - using (var box = new ExceptionBox($"EmuHawk needs {desc} in order to run! See the readme for more info. (EmuHawk will now close.)")) box.ShowDialog(); + using (var box = new ExceptionBox($"EmuHawk needs {desc} in order to run! See the readme on GitHub for more info. (EmuHawk will now close.)")) box.ShowDialog(); Process.GetCurrentProcess().Kill(); return; }