]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - qtypes.h
add prvm_uint_t type
[xonotic/darkplaces.git] / qtypes.h
index 57c8b5891e848c93468488a9b3a51a7882c13ebf..e0ba637bd257ccbf63cd888fa577b1670be73ae5 100644 (file)
--- a/qtypes.h
+++ b/qtypes.h
@@ -41,9 +41,11 @@ typedef bool qboolean;
 #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];