From 1504c5d0efe2049345d32f202d71cf6e55ebfa44 Mon Sep 17 00:00:00 2001 From: Dr-Noob Date: Tue, 13 Feb 2024 21:26:24 +0000 Subject: [PATCH] [v1.05][X86] Report x86 / x86_64 in ARCH_X86 builds --- src/common/global.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/global.c b/src/common/global.c index fbf35f1..1b1b87d 100644 --- a/src/common/global.c +++ b/src/common/global.c @@ -21,7 +21,7 @@ #endif #ifdef ARCH_X86 - static const char* ARCH_STR = "x86_64 build"; + static const char* ARCH_STR = "x86 / x86_64 build"; #include "../x86/cpuid.h" #elif ARCH_PPC static const char* ARCH_STR = "PowerPC build";