mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 13:27:41 -07:00
fix builds with jit disabled
This commit is contained in:
parent
e0e78a2bc8
commit
5f003eb967
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user