diff options
author | 2019-09-20 00:28:19 +1000 | |
---|---|---|
committer | 2019-09-20 00:28:19 +1000 | |
commit | dac7094f3431b8f933497b0c7693e6baeb1bb75c (patch) | |
tree | 1c3dc049110c54d23dc31a1e6c1e8b11fd24e299 /src/mame/includes/x1.h | |
parent | cc25024f791747fa17c1f06bd81c482a86aac91b (diff) |
(nw) misc cleanup:
* get rid of most assert_always
* get rid of a few MCFG_*_OVERRIDE
Diffstat (limited to 'src/mame/includes/x1.h')
-rw-r--r-- | src/mame/includes/x1.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/x1.h b/src/mame/includes/x1.h index 621133ac9b6..f86a47784f5 100644 --- a/src/mame/includes/x1.h +++ b/src/mame/includes/x1.h @@ -134,9 +134,9 @@ public: DECLARE_WRITE8_MEMBER(x1_portb_w); DECLARE_WRITE8_MEMBER(x1_portc_w); void init_x1_kanji(); - DECLARE_MACHINE_START(x1); + virtual void machine_start() override; DECLARE_MACHINE_RESET(x1); - DECLARE_VIDEO_START(x1); + virtual void video_start() override; DECLARE_MACHINE_RESET(x1turbo); uint32_t screen_update_x1(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); DECLARE_INPUT_CHANGED_MEMBER(ipl_reset); |