From 484641003cf727def0101f35c83d1ef135b93f54 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 7 Mar 2023 19:18:06 -0500 Subject: kernel: clone fpu status on CreateThread --- src/core/hle/kernel/k_thread.h | 2 ++ 1 file changed, 2 insertions(+) (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 bd125f5f1..9423f08ca 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -254,6 +254,8 @@ public: thread_context_32.tpidr = static_cast(value); } + void CloneFpuStatus(); + [[nodiscard]] ThreadContext32& GetContext32() { return thread_context_32; } -- cgit v1.2.3