mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 14:49:53 -06:00
fix builds with jit disabled
This commit is contained in:
@ -595,8 +595,11 @@ void ARMv5::Execute()
|
||||
Halted = 0;
|
||||
if (NDS.IME[0] & 0x1)
|
||||
{
|
||||
#ifdef JIT_ENABLED
|
||||
if constexpr (mode == CPUExecuteMode::JIT) TriggerIRQ<mode>();
|
||||
else IRQ = 1;
|
||||
else
|
||||
#endif
|
||||
IRQ = 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user