From af4b1c9c97104234092f5a7ff193f3ffa030e67a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20M=C3=BCller?= Date: Sun, 15 Oct 2023 16:41:31 +0200 Subject: [PATCH] Remove `tick error` debug message This is shown every time demo playback ends when reaching the end of the file and it does not really help debugging. --- src/engine/shared/demo.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/engine/shared/demo.cpp b/src/engine/shared/demo.cpp index 5491285f7..edd3e3fa0 100644 --- a/src/engine/shared/demo.cpp +++ b/src/engine/shared/demo.cpp @@ -1015,17 +1015,6 @@ int CDemoPlayer::Update(bool RealTime) m_UpdateIntraTimesFunc(); } - if(m_Info.m_Info.m_CurrentTick == m_Info.m_PreviousTick || m_Info.m_Info.m_CurrentTick == m_Info.m_NextTick) - { - if(m_pConsole) - { - char aBuf[256]; - str_format(aBuf, sizeof(aBuf), "tick error prev=%d cur=%d next=%d", - m_Info.m_PreviousTick, m_Info.m_Info.m_CurrentTick, m_Info.m_NextTick); - m_pConsole->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "demo_player", aBuf); - } - } - return 0; }