Created
December 2, 2012 13:41
-
-
Save celeron55/4188733 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/irrlichttypes.h b/src/irrlichttypes.h | |
index 8217729..535e9c4 100644 | |
--- a/src/irrlichttypes.h | |
+++ b/src/irrlichttypes.h | |
@@ -26,12 +26,13 @@ | |
#ifdef _MSC_VER | |
// Windows | |
- typedef unsigned long long u64; | |
+ typedef __int64 s64; | |
+ typedef unsigned __int64 u64; | |
#else | |
// Posix | |
#include <stdint.h> | |
typedef uint64_t u64; | |
- //typedef unsigned long long u64; | |
+ typedef int64_t s64; | |
#endif | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment