mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Initialize linkStatus to false in the ARM JIT cores as well.
This commit is contained in:
parent
22b86e64f5
commit
c5b8c65ddc
2 changed files with 2 additions and 0 deletions
|
@ -196,6 +196,7 @@ void JitArm::WriteExit(u32 destination)
|
|||
JitBlock::LinkData linkData;
|
||||
linkData.exitAddress = destination;
|
||||
linkData.exitPtrs = GetWritableCodePtr();
|
||||
linkData.linkStatus = false;
|
||||
|
||||
// Link opportunity!
|
||||
int block = blocks.GetBlockNumberFromStartAddress(destination);
|
||||
|
|
|
@ -125,6 +125,7 @@ void JitArmIL::WriteExit(u32 destination)
|
|||
JitBlock::LinkData linkData;
|
||||
linkData.exitAddress = destination;
|
||||
linkData.exitPtrs = GetWritableCodePtr();
|
||||
linkData.linkStatus = false;
|
||||
|
||||
// Link opportunity!
|
||||
int block = blocks.GetBlockNumberFromStartAddress(destination);
|
||||
|
|
Loading…
Add table
Reference in a new issue