[JIT]: Minor change

This commit is contained in:
SimoneN64
2025-01-23 23:39:24 +01:00
parent 7c502b3d6b
commit ee75eb10cf
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ int JIT::Step() {
}
u32 upperIndex = paddr >> kUpperShift;
u32 lowerIndex = paddr & 0xff;
u32 lowerIndex = paddr & kLowerMask;
if (!blockCache[upperIndex].empty()) {
if (blockCache[upperIndex][lowerIndex]) {