From 59966eb3943b581c64cfef8713bdb25f6a8637be Mon Sep 17 00:00:00 2001 From: justgo97 Date: Mon, 25 Jul 2022 23:51:59 +0200 Subject: [PATCH] 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. --- rehlds/HLTV/Console/src/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rehlds/HLTV/Console/src/System.cpp b/rehlds/HLTV/Console/src/System.cpp index 9aa184a..1e9cb50 100644 --- a/rehlds/HLTV/Console/src/System.cpp +++ b/rehlds/HLTV/Console/src/System.cpp @@ -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; }