1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Last set of minor cleanups

This commit is contained in:
kwolekr 2013-01-18 14:12:19 -05:00 committed by Perttu Ahola
parent 1cd8351054
commit b55fb4f2f6
5 changed files with 34 additions and 30 deletions

View file

@ -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