2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

SVC: Reschedule on svcCreateThread.

This commit is contained in:
bunnei 2015-03-23 00:50:38 -04:00
parent bdd190363d
commit ee3377b67d

View file

@ -336,6 +336,8 @@ static ResultCode CreateThread(u32* out_handle, u32 priority, u32 entry_point, u
"thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling");
}
HLE::Reschedule(__func__);
return RESULT_SUCCESS;
}