summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/thunderx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/thunderx.h')
-rw-r--r--src/mame/includes/thunderx.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/thunderx.h b/src/mame/includes/thunderx.h
index 3afa15e70a2..2ea60729e11 100644
--- a/src/mame/includes/thunderx.h
+++ b/src/mame/includes/thunderx.h
@@ -62,9 +62,9 @@ public:
DECLARE_WRITE8_MEMBER(k052109_051960_w);
DECLARE_WRITE8_MEMBER(k007232_bankswitch_w);
- virtual void machine_start();
- virtual void machine_reset();
- virtual void video_start();
+ virtual void machine_start() override;
+ virtual void machine_reset() override;
+ virtual void video_start() override;
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_interrupt);
@@ -77,5 +77,5 @@ public:
DECLARE_WRITE8_MEMBER(banking_callback);
protected:
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
};