From cd1ca91b7f605e5c1b1d91a15be5d95a4d6ff171 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Wed, 19 Feb 2020 08:10:10 -0800 Subject: [PATCH] Fix bug in checking fro 32/64 bit mismatch (#1101) --- src/gam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gam.py b/src/gam.py index 46c60d62..f7705bb0 100755 --- a/src/gam.py +++ b/src/gam.py @@ -750,7 +750,7 @@ def doGAMVersion(checkForArgs=True): f'{getOSPlatform()} {platform.machine()}\n' f'Path: {GM_Globals[GM_GAM_PATH]}')) if sys.platform.startswith('win') and \ - cpu_bits != 32 and \ + cpu_bits == 32 and \ platform.machine().find('64') != -1: print(MESSAGE_UPDATE_GAM_TO_64BIT) if timeOffset: