summaryrefslogtreecommitdiff
path: root/src/irrlichttypes.h
diff options
context:
space:
mode:
authorkwolekr <mirrorisim@gmail.com>2013-01-18 14:12:19 -0500
committerPerttu Ahola <celeron55@gmail.com>2013-01-21 21:41:37 +0200
commitb55fb4f2f6952f08ede8b37ba15ec8639410cca4 (patch)
treebf3d12c17f0f3f430ebae73ef61721bb300630da /src/irrlichttypes.h
parent1cd8351054c6f0b120e603e0e25b85da385f185a (diff)
downloadminetest-b55fb4f2f6952f08ede8b37ba15ec8639410cca4.tar.gz
minetest-b55fb4f2f6952f08ede8b37ba15ec8639410cca4.tar.bz2
minetest-b55fb4f2f6952f08ede8b37ba15ec8639410cca4.zip
Last set of minor cleanups
Diffstat (limited to 'src/irrlichttypes.h')
-rw-r--r--src/irrlichttypes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/irrlichttypes.h b/src/irrlichttypes.h
index 998992e05..2db744a48 100644
--- a/src/irrlichttypes.h
+++ b/src/irrlichttypes.h
@@ -28,12 +28,13 @@ using namespace irr;
#if (IRRLICHT_VERSION_MAJOR == 1 && IRRLICHT_VERSION_MINOR < 8)
#ifdef _MSC_VER
// Windows
+ typedef long long s64;
typedef unsigned long long u64;
#else
// Posix
#include <stdint.h>
+ typedef int64_t s64;
typedef uint64_t u64;
- //typedef unsigned long long u64;
#endif
#endif