Fix bug with new 32-bit warning on 64-bit

This commit is contained in:
Taylor Helsper 2023-10-25 23:48:53 -05:00
parent 0227114fcb
commit 53eb2a19be

View File

@ -673,7 +673,7 @@ def unset_uploader():
#==================================
def show_32_bit_warning():
if not os.path.isfile("/tmp/hide_32_bit_warning"):
if get_device_type() == "raspi4" and get_device_arch != "aarch64":
if get_device_type() == "raspi4" and get_device_arch() != "aarch64":
return True
return False