mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 12:57:55 -05:00
Kernel: Rewind on SVC change.
This commit is contained in:
@ -573,6 +573,14 @@ public:
|
||||
return pausing_state != 0;
|
||||
}
|
||||
|
||||
bool IsContinuousOnSVC() const {
|
||||
return is_continuous_on_svc;
|
||||
}
|
||||
|
||||
void SetContinuousOnSVC(bool is_continuous) {
|
||||
is_continuous_on_svc = is_continuous;
|
||||
}
|
||||
|
||||
private:
|
||||
friend class GlobalScheduler;
|
||||
friend class Scheduler;
|
||||
@ -672,6 +680,8 @@ private:
|
||||
bool is_waiting_on_sync = false;
|
||||
bool is_sync_cancelled = false;
|
||||
|
||||
bool is_continuous_on_svc = false;
|
||||
|
||||
bool will_be_terminated = false;
|
||||
|
||||
std::string name;
|
||||
|
Reference in New Issue
Block a user