Correct skipped parameter for deferred resched.

Forgot to check callbacks, oops.
This commit is contained in:
Unknown W. Brackets 2012-12-09 15:08:44 -08:00
parent cf9b5744bb
commit e150cc5c03

View file

@ -226,6 +226,7 @@ void hleReSchedule(const char *reason)
void hleReSchedule(bool callbacks, const char *reason)
{
hleReSchedule(reason);
if (callbacks)
hleAfterSyscall |= HLE_AFTER_RESCHED_CALLBACKS;
}