mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
Savestates/RSX: fix unintentional vblank thread spin after abort
This commit is contained in:
parent
ee1384341e
commit
11a197a387
1 changed files with 1 additions and 1 deletions
|
@ -814,7 +814,7 @@ namespace rsx
|
||||||
u64 local_vblank_count = 0;
|
u64 local_vblank_count = 0;
|
||||||
|
|
||||||
// TODO: exit condition
|
// TODO: exit condition
|
||||||
while (!is_stopped() && !unsent_gcm_events)
|
while (!is_stopped() && !unsent_gcm_events && thread_ctrl::state() != thread_state::aborting)
|
||||||
{
|
{
|
||||||
// Get current time
|
// Get current time
|
||||||
const u64 current = get_system_time();
|
const u64 current = get_system_time();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue