Another case of missed inheritance.

This commit is contained in:
Andrew Gardner 2013-05-24 15:02:43 +00:00
parent 008e06ff56
commit 2ed3c0cf05
2 changed files with 3 additions and 2 deletions

View File

@ -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
}; };

View File

@ -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;
} }
} }