Add some tolerance in checks against zero floating point values

This commit is contained in:
GoaLitiuM
2021-12-05 16:43:24 +02:00
parent d7d8eca9c8
commit 17311e7c9e
2 changed files with 4 additions and 4 deletions

View File

@@ -146,7 +146,7 @@ int32 Engine::Main(const Char* cmdLine)
while (!ShouldExit())
{
// Reduce CPU usage by introducing idle time if the engine is running very fast and has enough time to spend
if ((useSleep && Time::UpdateFPS > 0) || !Platform::GetHasFocus())
if ((useSleep && Time::UpdateFPS > ZeroTolerance) || !Platform::GetHasFocus())
{
double nextTick = Time::GetNextTick();
double timeToTick = nextTick - Platform::GetTimeSeconds();