mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-03-06 21:00:31 +01:00
I'm not 100% sure about this one, but unless there's some weird C++ shit
going on here it should be fine
This commit is contained in:
parent
17dbb10752
commit
39504241b9
1 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ void Compiler::Comp_JumpTo(u32 addr, bool forceNonConstantCycles)
|
||||||
// doesn't matter if we put garbage in the MSbs there
|
// doesn't matter if we put garbage in the MSbs there
|
||||||
if (addr & 0x2)
|
if (addr & 0x2)
|
||||||
{
|
{
|
||||||
cpu9->CodeRead32(addr-2, true) >> 16;
|
cpu9->CodeRead32(addr-2, true);
|
||||||
cycles += cpu9->CodeCycles;
|
cycles += cpu9->CodeCycles;
|
||||||
cpu9->CodeRead32(addr+2, false);
|
cpu9->CodeRead32(addr+2, false);
|
||||||
cycles += CurCPU->CodeCycles;
|
cycles += CurCPU->CodeCycles;
|
||||||
|
@ -437,4 +437,4 @@ void Compiler::T_Comp_BL_Merged()
|
||||||
Comp_JumpTo(target);
|
Comp_JumpTo(target);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue