From ec66447c200d0d300f0ab13978a7472416f34db7 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sun, 23 Feb 2025 19:29:43 -0800 Subject: [PATCH] Restore startup asm version check (accidentally commented out in previous commit) --- src/BizHawk.Client.EmuHawk/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.EmuHawk/Program.cs b/src/BizHawk.Client.EmuHawk/Program.cs index 0d615b5ad6..ce5706f24f 100644 --- a/src/BizHawk.Client.EmuHawk/Program.cs +++ b/src/BizHawk.Client.EmuHawk/Program.cs @@ -112,8 +112,8 @@ namespace BizHawk.Client.EmuHawk WinForms.Controls.ReflectionCache.AsmVersion, }.Any(asmVer => asmVer != thisAsmVer)) { - //MessageBox.Show("One or more of the BizHawk.* assemblies have the wrong version!\n(Did you attempt to update by overwriting an existing install?)"); - //return -1; + MessageBox.Show("One or more of the BizHawk.* assemblies have the wrong version!\n(Did you attempt to update by overwriting an existing install?)"); + return -1; } string dllDir = null;