mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:04:42 +02:00
Initialize linkStatus to false in the ARM JIT cores as well.
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user