mirror of
https://github.com/holub/mame
synced 2025-05-18 11:39:29 +03:00
Another case of missed inheritance.
This commit is contained in:
parent
008e06ff56
commit
2ed3c0cf05
@ -11,7 +11,7 @@ class blstroid_state : public atarigen_state
|
|||||||
public:
|
public:
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
TIMER_IRQ_OFF,
|
TIMER_IRQ_OFF = TID_UNHALT_CPU+1,
|
||||||
TIMER_IRQ_ON
|
TIMER_IRQ_ON
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -103,7 +103,8 @@ void blstroid_state::device_timer(emu_timer &timer, device_timer_id id, int para
|
|||||||
update_interrupts();
|
update_interrupts();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assert_always(FALSE, "Unknown id in blstroid_state::device_timer");
|
atarigen_state::device_timer(timer, id, param, ptr);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user