mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Fix small clang warning
This commit is contained in:
parent
75e81bc969
commit
c37c90613f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue