aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-03-18 17:02:55 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-03-18 20:03:19 -0300
commitba9674862de3e537b35bdb4d4c245ea7a247eb2f (patch)
tree5ee8d4b8a3005ec6cd2e37ebe4cac3713a08140d
parent56ea0f8acb89ebc9ab2191f130460c68a2471677 (diff)
microprofile: Silence sign comparison warning
-rw-r--r--externals/microprofile/microprofile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/microprofile/microprofile.h b/externals/microprofile/microprofile.h
index c1556d10c1..9d830f7bfe 100644
--- a/externals/microprofile/microprofile.h
+++ b/externals/microprofile/microprofile.h
@@ -828,7 +828,7 @@ inline MicroProfileLogEntry MicroProfileMakeLogIndex(uint64_t nBegin, MicroProfi
MicroProfileLogEntry Entry = (nBegin<<62) | ((0x3fff&nToken)<<48) | (MP_LOG_TICK_MASK&nTick);
int t = MicroProfileLogType(Entry);
uint64_t nTimerIndex = MicroProfileLogTimerIndex(Entry);
- MP_ASSERT(t == nBegin);
+ MP_ASSERT((uint64_t)t == nBegin);
MP_ASSERT(nTimerIndex == (nToken&0x3fff));
return Entry;
@@ -1556,10 +1556,10 @@ void MicroProfileFlip()
pFramePut->nFrameStartCpu = MP_TICK();
pFramePut->nFrameStartGpu = (uint32_t)MicroProfileGpuInsertTimeStamp();
- if(pFrameNext->nFrameStartGpu != (uint64_t)-1)
+ if(pFrameNext->nFrameStartGpu != -1)
pFrameNext->nFrameStartGpu = MicroProfileGpuGetTimeStamp((uint32_t)pFrameNext->nFrameStartGpu);
- if(pFrameCurrent->nFrameStartGpu == (uint64_t)-1)
+ if(pFrameCurrent->nFrameStartGpu == -1)
pFrameCurrent->nFrameStartGpu = pFrameNext->nFrameStartGpu + 1;
uint64_t nFrameStartCpu = pFrameCurrent->nFrameStartCpu;