Scheduler: Fix typo

This commit is contained in:
wheremyfoodat
2025-10-12 00:01:36 +03:00
committed by GitHub
parent 72b9aecda5
commit 49fe7037cb

View File

@@ -8,7 +8,7 @@
struct Scheduler { struct Scheduler {
enum class EventType { enum class EventType {
VBlank = 0, // End of frame event VBlank = 0, // End of frame event
ThreadWakeup = 1, // A thread might wake up from eg sleeping or timing outs ThreadWakeup = 1, // A thread might wake up from eg sleeping or timing out
RunDSP = 2, // Make the emulated DSP run for one audio frame RunDSP = 2, // Make the emulated DSP run for one audio frame
UpdateTimers = 3, // Update kernel timer objects UpdateTimers = 3, // Update kernel timer objects
SignalY2R = 4, // Signal that a Y2R conversion has finished SignalY2R = 4, // Signal that a Y2R conversion has finished