X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qtypes.h;h=6c09614eff2479b53c30d24bc1d2212d0c0697da;hb=349cb25ab576480b733e8f575e529181f4bceae4;hp=57c8b5891e848c93468488a9b3a51a7882c13ebf;hpb=a54c8536b6a1e66893f01c44fba8096182ff59d7;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];