2
0
mirror of https://github.com/rehlds/rehlds.git synced 2024-12-27 07:05:43 +03:00

Move warning message to debug mode

This warning message doesn't seem to go away, maybe it's better to keep only in debug mode.
This commit is contained in:
justgo97 2022-07-25 23:51:59 +02:00 committed by GitHub
parent e9045e3b63
commit 59966eb394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -502,7 +502,7 @@ void System::RunFrame(double time)
UpdateTime();
double timeDiff = m_SystemTime - m_LastTime;
if (m_LastTime > 0 && timeDiff <= 0) {
Printf("WARNING! System::RunFrame: system time difference <= 0.\n");
DPrintf("WARNING! System::RunFrame: system time difference <= 0.\n");
timeDiff = 0.001;
}