mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
Scheduler: Fix event numbers
This commit is contained in:
parent
b17284b23a
commit
59dd4433cf
1 changed files with 2 additions and 2 deletions
|
@ -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<usize>(EventType::TotalNumberOfEvents);
|
||||
|
@ -89,4 +89,4 @@ struct Scheduler {
|
|||
|
||||
return (arm11Clock * s64(ns)) / 1000000000;
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue