diff --git a/include/scheduler.hpp b/include/scheduler.hpp index f8eae2fc..b81b8807 100644 --- a/include/scheduler.hpp +++ b/include/scheduler.hpp @@ -13,7 +13,7 @@ struct Scheduler { RunDSP = 2, // Make the emulated DSP run for one audio frame ThreadWakeup = 3, // A thread is going to wake up and we need to reschedule threads SignalY2R = 4, // Signal that a Y2R conversion has finished - Panic = 4, // Dummy event that is always pending and should never be triggered (Timestamp = UINT64_MAX) + Panic = 5, // Dummy event that is always pending and should never be triggered (Timestamp = UINT64_MAX) TotalNumberOfEvents // How many event types do we have in total? }; static constexpr usize totalNumberOfEvents = static_cast(EventType::TotalNumberOfEvents); @@ -89,4 +89,4 @@ struct Scheduler { return (arm11Clock * s64(ns)) / 1000000000; } -}; \ No newline at end of file +};