diff --git a/codemp/qcommon/timing.h b/codemp/qcommon/timing.h index ddee390..df2d8a9 100644 --- a/codemp/qcommon/timing.h +++ b/codemp/qcommon/timing.h @@ -2,8 +2,8 @@ class timing_c { private: - __int64 start; - __int64 end; + int64_t start; + int64_t end; int reset; public: @@ -12,7 +12,7 @@ public: } void Start() { - const __int64 *s = &start; + const int64_t *s = &start; __asm { push eax @@ -31,8 +31,8 @@ public: } int End() { - const __int64 *e = &end; - __int64 time; + const int64_t *e = &end; + int64_t time; #ifndef __linux__ __asm { @@ -58,4 +58,4 @@ public: return((int)time); } }; -// end \ No newline at end of file +// end