mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 03:24:49 +00:00
Fix bad vsib address
This commit is contained in:
parent
36c7e60e4c
commit
33d64c3159
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ void EmitLogicalOr(EmitContext& ctx, const Operands& dest, const Operands& op1,
|
|||
|
||||
void EmitLogicalAnd(EmitContext& ctx, const Operands& dest, const Operands& op1, const Operands& op2) {
|
||||
OperandHolder tmp = op2[0].IsMem() && dest[0].IsMem() ? ctx.TempGPReg().cvt8() : dest[0];
|
||||
MovGP(ctx, tmp.Op(), op1[0]);
|
||||
MovGP(ctx, tmp, op1[0]);
|
||||
ctx.Code().and_(tmp.Op(), op2[0].Op());
|
||||
ctx.Code().and_(tmp.Op(), 1);
|
||||
MovGP(ctx, dest[0], tmp);
|
||||
|
|
Loading…
Add table
Reference in a new issue