Skip to content

Commit

Permalink
Fixup for cpu_flag::pause state check after RPCS3#8114
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Apr 29, 2020
1 parent d66bdf1 commit 453f1e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/SPUThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1784,7 +1784,7 @@ bool spu_thread::process_mfc_cmd()

for (u64 i = 0;; [&]()
{
if (is_paused())
if (state & cpu_flag::pause)
{
check_state();
}
Expand Down

0 comments on commit 453f1e5

Please sign in to comment.