1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00

Don't redefine X64BITS if already defined. (#138)

This commit is contained in:
Peak 2023-09-30 19:55:30 -04:00 committed by GitHub
parent db9b90619f
commit f6fe5165fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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