diff --git a/src/engine/shared/demo.cpp b/src/engine/shared/demo.cpp index 9196ae0f7..dce31d623 100644 --- a/src/engine/shared/demo.cpp +++ b/src/engine/shared/demo.cpp @@ -415,20 +415,34 @@ void CDemoRecorder::AddDemoMarker(int Tick) { dbg_assert(Tick >= 0, "invalid marker tick"); if(m_NumTimelineMarkers >= MAX_TIMELINE_MARKERS) + { + if(m_pConsole) + { + m_pConsole->Print(IConsole::OUTPUT_LEVEL_STANDARD, "demo_recorder", "Too many timeline markers", gs_DemoPrintColor); + } return; + } // not more than 1 marker in a second if(m_NumTimelineMarkers > 0) { - int Diff = Tick - m_aTimelineMarkers[m_NumTimelineMarkers - 1]; + const int Diff = Tick - m_aTimelineMarkers[m_NumTimelineMarkers - 1]; if(Diff < (float)SERVER_TICK_SPEED) + { + if(m_pConsole) + { + m_pConsole->Print(IConsole::OUTPUT_LEVEL_STANDARD, "demo_recorder", "Previous timeline marker too close", gs_DemoPrintColor); + } return; + } } m_aTimelineMarkers[m_NumTimelineMarkers++] = Tick; if(m_pConsole) + { m_pConsole->Print(IConsole::OUTPUT_LEVEL_STANDARD, "demo_recorder", "Added timeline marker", gs_DemoPrintColor); + } } CDemoPlayer::CDemoPlayer(class CSnapshotDelta *pSnapshotDelta, bool UseVideo, TUpdateIntraTimesFunc &&UpdateIntraTimesFunc)