From df64109df6c322559b48bf1244571e1aefeff01d Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 1 May 2026 20:20:23 +1000 Subject: [PATCH] TimingEvents: Fix overzealous assertion --- src/core/timing_event.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/timing_event.cpp b/src/core/timing_event.cpp index 22ba078c0..0a56e89db 100644 --- a/src/core/timing_event.cpp +++ b/src/core/timing_event.cpp @@ -577,7 +577,7 @@ void TimingEvent::Schedule(TickCount ticks) { using namespace TimingEvents; - DebugAssert(ticks > 0); + DebugAssert(ticks >= 0); const GlobalTicks ts = GetTimestampForNewEvent(); const GlobalTicks next_run_time = ts + static_cast(ticks);