mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
fix clang warning: logical-op-parentheses
This commit is contained in:
parent
489ded43b1
commit
d64e79bd9f
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class FragmentProgramDecompiler
|
||||||
{
|
{
|
||||||
//Data fetched from the single precision register requires merging of the two half registers
|
//Data fetched from the single precision register requires merging of the two half registers
|
||||||
//TODO: Check individual swizzle channels
|
//TODO: Check individual swizzle channels
|
||||||
if (aliased_h0 && xy || aliased_h1 && zw)
|
if ((aliased_h0 && xy) || (aliased_h1 && zw))
|
||||||
return last_write_half;
|
return last_write_half;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue