diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-03-09 09:19:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-09 09:19:15 -0500 |
| commit | ec4e2d1fab5ff71a33de1229dab191b679983daa (patch) | |
| tree | a0e09486cb95c4a86d03fb36e6df785c32a337cc /src/core/hle/kernel/k_thread.h | |
| parent | b5c0c1e16360ad7c3b82d70d46c2193b6e32fe63 (diff) | |
| parent | 484641003cf727def0101f35c83d1ef135b93f54 (diff) | |
Merge pull request #9916 from liamwhite/fpu
kernel: clone fpu status on CreateThread
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
| -rw-r--r-- | src/core/hle/kernel/k_thread.h | 2 |
1 files changed, 2 insertions, 0 deletions
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<u32>(value); } + void CloneFpuStatus(); + [[nodiscard]] ThreadContext32& GetContext32() { return thread_context_32; } |
