]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - qtypes.h
Configure all of the CL_MeshEntities* meshes the same, the material flags decide...
[xonotic/darkplaces.git] / qtypes.h
index 38b3b9fa70b4c20682839c034bfaafda85c7d851..6c09614eff2479b53c30d24bc1d2212d0c0697da 100644 (file)
--- a/qtypes.h
+++ b/qtypes.h
@@ -35,14 +35,20 @@ typedef bool qboolean;
 #define RESTRICT
 #endif
 
+typedef long long dpint64;
+typedef unsigned long long dpuint64;
+
 // LordHavoc: upgrade the prvm to double precision for better time values
+// LordHavoc: to be enabled when bugs are worked out...
 //#define PRVM_64
 #ifdef PRVM_64
 typedef double prvm_vec_t;
 typedef long long prvm_int_t;
+typedef unsigned long long prvm_uint_t;
 #else
 typedef float prvm_vec_t;
 typedef int prvm_int_t;
+typedef unsigned int prvm_uint_t;
 #endif
 typedef prvm_vec_t prvm_vec3_t[3];