summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/svc
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/svc')
-rw-r--r--src/core/hle/kernel/svc/svc_thread.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/svc/svc_thread.cpp b/src/core/hle/kernel/svc/svc_thread.cpp
index b39807841..9bc1ebe74 100644
--- a/src/core/hle/kernel/svc/svc_thread.cpp
+++ b/src/core/hle/kernel/svc/svc_thread.cpp
@@ -82,6 +82,9 @@ Result CreateThread(Core::System& system, Handle* out_handle, VAddr entry_point,
82 // Commit the thread reservation. 82 // Commit the thread reservation.
83 thread_reservation.Commit(); 83 thread_reservation.Commit();
84 84
85 // Clone the current fpu status to the new thread.
86 thread->CloneFpuStatus();
87
85 // Register the new thread. 88 // Register the new thread.
86 KThread::Register(kernel, thread); 89 KThread::Register(kernel, thread);
87 90