From: havoc Date: Wed, 17 Apr 2013 02:33:45 +0000 (+0000) Subject: add prvm_uint_t type X-Git-Tag: xonotic-v0.7.0~8 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=41621107d68c4cc59742c389b851bcfeb0d0385e;p=xonotic%2Fdarkplaces.git add prvm_uint_t type git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11941 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=cd63746d0f88ccbc279bc61cbcf3dfd400437bc0 --- diff --git a/qtypes.h b/qtypes.h index 57c8b589..e0ba637b 100644 --- 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];