TimingEvent: Fix crash when invalid save state loaded

This commit is contained in:
Connor McLaughlin 2020-09-06 17:47:49 +10:00
parent 2c36750a0e
commit 976d4bae79

View File

@ -207,6 +207,7 @@ static void RemoveActiveEvent(TimingEvent* event)
else
{
s_active_events_head = event->next;
if (s_active_events_head)
UpdateCPUDowncount();
}