From b6a83a1494031b090897657f8a3349cb35590f71 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 1 Jun 2017 13:00:37 -0400 Subject: [PATCH] ioquake3 calls this arch "x86" and not "i386". --- code/autoupdater/autoupdater.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/autoupdater/autoupdater.c b/code/autoupdater/autoupdater.c index 5cd053bf..cf1dee55 100644 --- a/code/autoupdater/autoupdater.c +++ b/code/autoupdater/autoupdater.c @@ -40,7 +40,7 @@ is licensed until the GPLv2. Do not mingle code, please! #endif #ifdef __i386__ -#define AUTOUPDATE_ARCH "i386" +#define AUTOUPDATE_ARCH "x86" #elif defined(__x86_64__) #define AUTOUPDATE_ARCH "x86-64" #else