X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qtypes.h;h=6c09614eff2479b53c30d24bc1d2212d0c0697da;hb=ff4d2345f3b3fd427852095c77fedc616bfdab5d;hp=57c8b5891e848c93468488a9b3a51a7882c13ebf;hpb=0dd013ba837f113a9f9d270920afb4289030b1a0;p=xonotic%2Fdarkplaces.git diff --git a/qtypes.h b/qtypes.h index 57c8b589..6c09614e 100644 --- a/qtypes.h +++ b/qtypes.h @@ -35,15 +35,20 @@ typedef bool qboolean; #define RESTRICT #endif +typedef long long dpint64; +typedef unsigned long long dpuint64; + // LordHavoc: upgrade the prvm to double precision for better time values // LordHavoc: to be enabled when bugs are worked out... //#define PRVM_64 #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];