summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/shtzone.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/shtzone.cpp')
-rw-r--r--src/mame/drivers/shtzone.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/shtzone.cpp b/src/mame/drivers/shtzone.cpp
index eb53191c264..59307b24c42 100644
--- a/src/mame/drivers/shtzone.cpp
+++ b/src/mame/drivers/shtzone.cpp
@@ -57,9 +57,9 @@ class shtzone_state : public driver_device
public:
shtzone_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag) { }
- 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_shtzone(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};