quick fail is the user is somehow running EmuHawk as a 32 bit process

This commit is contained in:
CasualPokePlayer 2022-08-29 17:01:26 -07:00
parent b588212e17
commit 70906c9004
1 changed files with 8 additions and 0 deletions

View File

@ -26,6 +26,14 @@ namespace BizHawk.Client.EmuHawk
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
// quickly check if the user is running this as a 32 bit process somehow
if (!Environment.Is64BitProcess)
{
using (var box = new ExceptionBox($"EmuHawk requires a 64 bit environment in order to run! EmuHawk will now close.")) box.ShowDialog();
Process.GetCurrentProcess().Kill();
return;
}
if (OSTC.IsUnixHost)
{
// for Unix, skip everything else and just wire up the event handler