Always handle interrupt even if InterruptFlags == 0, though it should not

really happen in practise.
This commit is contained in:
gbeauche 2004-06-22 14:18:35 +00:00
parent f2324520b7
commit 070ac7079f

View File

@ -1071,10 +1071,6 @@ void sheepshaver_cpu::handle_interrupt(void)
if (*(int32 *)XLM_IRQ_NEST > 0)
return;
// Do nothing if there is no interrupt pending
if (InterruptFlags == 0)
return;
// Current interrupt nest level
static int interrupt_depth = 0;
++interrupt_depth;