1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-03 16:13:22 +08:00

Patch SteamWorks include against X64BITS redefinition.

This commit is contained in:
Nick Hastings 2021-12-13 09:17:05 -05:00
parent 3466d3b425
commit 6eb8f5b2f6

View File

@ -24,7 +24,7 @@ typedef unsigned char uint8;
#define POSIX 1 #define POSIX 1
#endif #endif
#if defined(__LP64__) || defined(__x86_64__) || defined(_WIN64) || defined(__aarch64__) || defined(__s390x__) #if !defined(X64BITS) && (defined(__LP64__) || defined(__x86_64__) || defined(_WIN64) || defined(__aarch64__) || defined(__s390x__))
#define X64BITS #define X64BITS
#endif #endif