mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-14 18:37:27 +00:00
Merge pull request #581 from boxingcow/master
Fix small Clang warning about parenthesis
This commit is contained in:
commit
9989988cb7
@ -33,7 +33,7 @@ public:
|
|||||||
switch((code0 >> 8) & 0x1)
|
switch((code0 >> 8) & 0x1)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
m_op.CBZ((code0 >> 11) & 0x1, branchTarget((((code0 >> 9) & 0x1) << 5) | (code0 >> 3) & 0x1f), code0 & 0x7, 2);
|
m_op.CBZ((code0 >> 11) & 0x1, branchTarget((((code0 >> 9) & 0x1) << 5) | ((code0 >> 3) & 0x1f)), code0 & 0x7, 2);
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user