Slightly change wording on prereq checker error message

This commit is contained in:
YoshiRulz 2021-01-17 23:32:20 +10:00
parent 28ff2231f2
commit 476eafc66f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 1 deletions

View File

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