Skip to content

Commit

Permalink
I'm not 100% sure about this one, but unless there's some weird C++ shit
Browse files Browse the repository at this point in the history
going on here it should be fine
  • Loading branch information
nadiaholmquist committed Dec 25, 2024
1 parent 17dbb10 commit 3950424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ARMJIT_A64/ARMJIT_Branch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void Compiler::Comp_JumpTo(u32 addr, bool forceNonConstantCycles)
// doesn't matter if we put garbage in the MSbs there
if (addr & 0x2)
{
cpu9->CodeRead32(addr-2, true) >> 16;
cpu9->CodeRead32(addr-2, true);
cycles += cpu9->CodeCycles;
cpu9->CodeRead32(addr+2, false);
cycles += CurCPU->CodeCycles;
Expand Down Expand Up @@ -437,4 +437,4 @@ void Compiler::T_Comp_BL_Merged()
Comp_JumpTo(target);
}

}
}

0 comments on commit 3950424

Please sign in to comment.