PPU: Fix potential overflow

This commit is contained in:
Elad Ashkenazi 2024-07-27 09:56:11 +03:00
parent 700334753d
commit 91b4aaf9e1
4 changed files with 6 additions and 6 deletions

View file

@ -933,7 +933,7 @@ namespace rsx
{ ppu_cmd::sleep, 0 }
});
intr_thread->cmd_notify++;
intr_thread->cmd_notify.store(1);
intr_thread->cmd_notify.notify_one();
}
}
@ -3923,7 +3923,7 @@ namespace rsx
{ ppu_cmd::sleep, 0 }
});
intr_thread->cmd_notify++;
intr_thread->cmd_notify.store(1);
intr_thread->cmd_notify.notify_one();
}
}