]> 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)
committerRudolf Polzer <divverent@xonotic.org>
Fri, 19 Apr 2013 10:58:43 +0000 (12:58 +0200)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11941 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=cd63746d0f88ccbc279bc61cbcf3dfd400437bc0

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