summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/kernel/thread.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 83e956036..42c1c4303 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -148,8 +148,7 @@ static void ResetThreadContext64(Core::ARM_Interface::ThreadContext64& context,
148 context.pc = entry_point; 148 context.pc = entry_point;
149 context.sp = stack_top; 149 context.sp = stack_top;
150 // TODO(merry): Perform a hardware test to determine the below value. 150 // TODO(merry): Perform a hardware test to determine the below value.
151 // AHP = 0, DN = 1, FTZ = 1, RMode = Round towards zero 151 context.fpcr = 0;
152 context.fpcr = 0x03C00000;
153} 152}
154 153
155ResultVal<std::shared_ptr<Thread>> Thread::Create(KernelCore& kernel, std::string name, 154ResultVal<std::shared_ptr<Thread>> Thread::Create(KernelCore& kernel, std::string name,