summaryrefslogtreecommitdiff
blob: 28139e1b1fa58a50a405a55d9c1a9272eb10e9e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- engine/namefield.h
+++ engine/namefield.h
@@ -31,6 +31,7 @@
 #include "../util/gltypes.h"
 #include "../util/gllist.h"
 #include "SDL_endian.h"
+#include "SDL_rwops.h"
 
 
 
--- util/gltypes.h
+++ util/gltypes.h
@@ -40,8 +40,8 @@
 	typedef Sint32			S32;
 
 	#ifdef SDL_HAS_64BIT_TYPE
-		typedef SDL_HAS_64BIT_TYPE				S64;
-		typedef unsigned SDL_HAS_64BIT_TYPE		U64;
+		typedef Sint64			S64;
+		typedef Uint64			U64;
 	#else
 		#error No 64-bit integer.
 	#endif