diff options
author | Peter Kohaut | 2017-03-09 23:46:39 +0100 |
---|---|---|
committer | Peter Kohaut | 2017-03-09 23:48:57 +0100 |
commit | d34314ccc9d767907589babc561c60abbb078e29 (patch) | |
tree | a81d1fc0bde401f8e81fce1f40b4c7db9ba10267 | |
parent | 659ec5b6758323781be25bd452fb525e392e9e07 (diff) | |
download | scummvm-rg350-d34314ccc9d767907589babc561c60abbb078e29.tar.gz scummvm-rg350-d34314ccc9d767907589babc561c60abbb078e29.tar.bz2 scummvm-rg350-d34314ccc9d767907589babc561c60abbb078e29.zip |
BUILD: Fixed macro redefinition warning for 64 bits builds
-rw-r--r-- | common/scummsys.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 938770baa6..432dd74fa7 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -321,7 +321,9 @@ defined(__powerpc64__) || \ defined(__LP64__) - #define SCUMM_64BITS + #if !defined(SCUMM_64BITS) + #define SCUMM_64BITS + #endif #endif |