CPUThread: Prevent recursive check_state calls

This commit is contained in:
Eladash 2021-09-17 12:01:29 +03:00 committed by Ivan
parent 975aae1d13
commit ddec5d6908
2 changed files with 3 additions and 3 deletions

View file

@ -3172,7 +3172,7 @@ bool spu_thread::process_mfc_cmd()
mfc_last_timestamp = 0;
// Process MFC commands
if (!test_stopped())
if (test_stopped())
{
return false;
}