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,7 +226,8 @@ void hleReSchedule(const char *reason)
void hleReSchedule(bool callbacks, const char *reason)
{
hleReSchedule(reason);
hleAfterSyscall |= HLE_AFTER_RESCHED_CALLBACKS;
if (callbacks)
hleAfterSyscall |= HLE_AFTER_RESCHED_CALLBACKS;
}
inline void hleFinishSyscall()