mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-27 18:17:02 +01:00
Don't add lonely cpu_flag::memory on TSX path (bug)
This commit is contained in:
parent
0c7f9458c0
commit
71ca413067
|
|
@ -800,7 +800,7 @@ void ppu_thread::cpu_sleep()
|
||||||
raddr = 0;
|
raddr = 0;
|
||||||
|
|
||||||
// Setup wait flag and memory flags to relock itself
|
// Setup wait flag and memory flags to relock itself
|
||||||
state += cpu_flag::wait + cpu_flag::memory;
|
state += g_use_rtm ? cpu_flag::wait : cpu_flag::wait + cpu_flag::memory;
|
||||||
|
|
||||||
if (auto ptr = vm::g_tls_locked)
|
if (auto ptr = vm::g_tls_locked)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue