From: havoc Date: Wed, 17 Apr 2013 02:33:45 +0000 (+0000) Subject: add prvm_uint_t type X-Git-Tag: xonotic-v0.8.0~96^2~99 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=cd63746d0f88ccbc279bc61cbcf3dfd400437bc0;hp=3584e00e83c35175f014b20aa1880a0048384d43 add prvm_uint_t type git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11941 d7cf8633-e32d-0410-b094-e92efae38249 --- 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];