Set fpscr for new threads

This commit is contained in:
Jannik Vogel 2016-05-14 15:45:04 +02:00
parent 18b517e236
commit af37dd0d52
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());