mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Correct skipped parameter for deferred resched.
Forgot to check callbacks, oops.
This commit is contained in:
parent
cf9b5744bb
commit
e150cc5c03
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue