mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 13:07:53 -05:00
Scheduler: Correct yields.
This commit is contained in:
@ -524,6 +524,10 @@ public:
|
||||
static_cast<u32>(ThreadSchedMasks::LowMask));
|
||||
}
|
||||
|
||||
bool IsRunnable() const {
|
||||
return scheduling_state == static_cast<u32>(ThreadSchedStatus::Runnable);
|
||||
}
|
||||
|
||||
bool IsRunning() const {
|
||||
return is_running;
|
||||
}
|
||||
|
Reference in New Issue
Block a user