mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 08:21:29 +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;
|
||||
|
||||
// TODO: exit condition
|
||||
while (!is_stopped() && !unsent_gcm_events)
|
||||
while (!is_stopped() && !unsent_gcm_events && thread_ctrl::state() != thread_state::aborting)
|
||||
{
|
||||
// Get current time
|
||||
const u64 current = get_system_time();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue