JitArm64: Fix block linking.

Double negation fail, sorry.
This commit is contained in:
degasus 2016-09-10 10:36:28 +02:00
parent be763949bc
commit 789e776a47
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ void JitArm64BlockCache::WriteLinkBlock(const JitBlock::LinkData& source, const
s64 distance = ((s64)dest->normalEntry - (s64)location) >> 2; s64 distance = ((s64)dest->normalEntry - (s64)location) >> 2;
if (distance >= -0x40000 && distance <= 0x3FFFF) if (distance >= -0x40000 && distance <= 0x3FFFF)
{ {
emit.B(CC_LE, dest->normalEntry); emit.B(CC_PL, dest->normalEntry);
} }
// Use the checked entry if either downcount is smaller zero, // Use the checked entry if either downcount is smaller zero,