From e36f24ad691f4b61ee3cf7c01819edf4b70f80d1 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 6 Nov 2013 18:04:09 +0200 Subject: 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. --- common/scummsys.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') 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 -- cgit v1.2.3