1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Minor spu_channel_4_t optimization

This commit is contained in:
Eladash 2019-11-01 12:57:14 +02:00 committed by Ivan
parent ec9622b513
commit 3257552227

View File

@ -284,7 +284,7 @@ public:
// push unconditionally (overwriting latest value), returns true if needs signaling
void push(cpu_thread& spu, u32 value)
{
value3.store(value);
value3.release(value);
if (values.atomic_op([=](sync_var_t& data) -> bool
{