From baf230b70d43200744ce4efe91ad2f3d6f67bfd2 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Mon, 2 Apr 2018 13:40:00 -0700 Subject: [PATCH] minbase_types.h: unbreak build on Linux I really wish this header didn't exist. Signed-off-by: Steven Noonan --- src/public/minbase/minbase_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/minbase/minbase_types.h b/src/public/minbase/minbase_types.h index 75c2f02..2bdcbec 100644 --- a/src/public/minbase/minbase_types.h +++ b/src/public/minbase/minbase_types.h @@ -75,7 +75,7 @@ typedef uint32 uint32_t; // NOTE: int64_t must match the compiler stdint.h definition // and so may not match the Steam int64. Mixing the two is // error-prone so always use the Steam non-_t types in Steam code. -#if 0 && defined(COMPILER_GCC) && defined(PLATFORM_64BITS) && !defined(OSX) && !(defined(IOS) || defined(TVOS)) +#if defined(COMPILER_GCC) && defined(PLATFORM_64BITS) && !defined(__MINGW32_) && !defined(OSX) && !(defined(IOS) || defined(TVOS)) #define INT64_DIFFERENT_FROM_INT64_T 1 typedef long int int64_t; typedef unsigned long int uint64_t;