]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
add prvm_uint_t type
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 17 Apr 2013 02:33:45 +0000 (02:33 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 17 Apr 2013 02:33:45 +0000 (02:33 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11941 d7cf8633-e32d-0410-b094-e92efae38249

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];