Merge pull request #1800 from JayFoxRox/set-fpscr

Set fpscr for new threads
This commit is contained in:
bunnei 2016-05-17 21:24:57 -04:00
commit a39144050b
3 changed files with 6 additions and 0 deletions

View file

@ -526,6 +526,8 @@ SharedPtr<Thread> SetupMainThread(u32 entry_point, s32 priority) {
SharedPtr<Thread> thread = thread_res.MoveFrom();
thread->context.fpscr = FPSCR_DEFAULT_NAN | FPSCR_FLUSH_TO_ZERO | FPSCR_ROUND_TOZERO | FPSCR_IXC; // 0x03C00010
// Run new "main" thread
SwitchContext(thread.get());