diff options
author | Filippos Karapetis | 2013-11-06 18:04:09 +0200 |
---|---|---|
committer | Filippos Karapetis | 2013-11-06 18:04:09 +0200 |
commit | e36f24ad691f4b61ee3cf7c01819edf4b70f80d1 (patch) | |
tree | 965fc9620f3ab47614e05c2bdd02bd405baf5cf0 | |
parent | 9678195674f9396051e373f8ebadd7dcc46bc479 (diff) | |
download | scummvm-rg350-e36f24ad691f4b61ee3cf7c01819edf4b70f80d1.tar.gz scummvm-rg350-e36f24ad691f4b61ee3cf7c01819edf4b70f80d1.tar.bz2 scummvm-rg350-e36f24ad691f4b61ee3cf7c01819edf4b70f80d1.zip |
COMMON: Define int64 and uint64 if HAVE_CONFIG_H isn't set
This fixes compilation of sword25's pluto with Visual Studio. The issue
has been revealed with commit 34169a81. The other data types are
defined in scummsys.h, thus only the missing int64 and uint64 defines
are set.
-rw-r--r-- | common/scummsys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index b15a76e5b9..48dffc53a6 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -405,6 +405,8 @@ typedef unsigned int uint32; typedef signed int int32; typedef unsigned int uint; + typedef signed long long int64; + typedef unsigned long long uint64; #endif |