[Scummvm-cvs-logs] scummvm master -> e36f24ad691f4b61ee3cf7c01819edf4b70f80d1

bluegr bluegr at gmail.com
Wed Nov 6 17:04:53 CET 2013


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
e36f24ad69 COMMON: Define int64 and uint64 if HAVE_CONFIG_H isn't set


Commit: e36f24ad691f4b61ee3cf7c01819edf4b70f80d1
    https://github.com/scummvm/scummvm/commit/e36f24ad691f4b61ee3cf7c01819edf4b70f80d1
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2013-11-06T08:04:09-08:00

Commit Message:
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.

Changed paths:
    common/scummsys.h



diff --git a/common/scummsys.h b/common/scummsys.h
index b15a76e..48dffc5 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
 
 






More information about the Scummvm-git-logs mailing list