diff options
| author | bunnei <bunneidev@gmail.com> | 2022-01-14 16:31:47 -0800 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2022-01-14 16:44:14 -0800 |
| commit | 03884b7ea67a61323753db4d1f66d015bfa042e9 (patch) | |
| tree | 610168ed468afb237e0d9e10bc87c5197c816327 /src/core/hle/kernel/k_thread.h | |
| parent | c905044e1bdd7b602ae43e053b57bae03c47244a (diff) | |
core: hle: kernel: KThread: Replace Suspend with UpdateState & various updates.
- This makes our implementations of these more closely match HOS.
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
| -rw-r--r-- | src/core/hle/kernel/k_thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index 83dfde69b..92c3493c5 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -192,9 +192,9 @@ public: void TrySuspend(); - void Continue(); + void UpdateState(); - void Suspend(); + void Continue(); constexpr void SetSyncedIndex(s32 index) { synced_index = index; |
