Commit d3b4e039 authored by cutealien's avatar cutealien

Another s64 fix, this time for gcc on 64-bit platforms.


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4118 dfc29bdd-3216-0410-991c-e03cc46cb475
parent c96ab8b9
......@@ -73,7 +73,11 @@ typedef signed int s32;
#ifdef _MSC_VER
typedef __int64 s64;
#elif __GNUC__
#if __WORDSIZE == 64
typedef long int s64;
#else
__extension__ typedef long long s64;
#endif
#else
typedef long long s64;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment