From 03884b7ea67a61323753db4d1f66d015bfa042e9 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 14 Jan 2022 16:31:47 -0800 Subject: core: hle: kernel: KThread: Replace Suspend with UpdateState & various updates. - This makes our implementations of these more closely match HOS. --- src/core/hle/kernel/k_thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/hle/kernel/k_thread.h') 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; -- cgit v1.2.3