Make it Squeak

This commit is contained in:
Lirusaito
2019-07-31 19:43:33 -04:00
parent 2580ca7afd
commit 9f84fe6d5a

View File

@@ -90,7 +90,7 @@
bool operator==(AISyncKey const& key1, AISyncKey const& key2)
{
// Test if these keys match based on time.
if (std::abs((key1.mStartFrameCount - key2.mStartFrameCount)) > 1 &&
if (std::abs((S64)(key1.mStartFrameCount - key2.mStartFrameCount)) > 1 &&
std::abs(key1.mFrameTimer.getStartTime() - key2.mFrameTimer.getStartTime()) >= sSyncKeyExpirationTime)
{
return false;