mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix Windows ARM64 debug build errors
Jit.cpp : Potentially uninitialized local pointer variable 'host_address_after_return' used in a DEBUG_ASSERT on line 470. dolphin-emu.sln : A copy-paste error.
This commit is contained in:
@ -413,7 +413,7 @@ void JitArm64::WriteExit(u32 destination, bool LK, u32 exit_address_after_return
|
||||
|
||||
LK &= m_enable_blr_optimization;
|
||||
|
||||
const u8* host_address_after_return;
|
||||
const u8* host_address_after_return = nullptr;
|
||||
if (LK)
|
||||
{
|
||||
// Push {ARM_PC (64-bit); PPC_PC (32-bit); feature_flags (32-bit)} on the stack
|
||||
|
Reference in New Issue
Block a user