summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gp32.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gp32.h')
-rw-r--r--src/mame/includes/gp32.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/gp32.h b/src/mame/includes/gp32.h
index a3754f5b9aa..270d6c5f01d 100644
--- a/src/mame/includes/gp32.h
+++ b/src/mame/includes/gp32.h
@@ -104,7 +104,7 @@ public:
m_io_in1(*this, "IN1"),
m_palette(*this, "palette") { }
- virtual void video_start();
+ virtual void video_start() override;
required_shared_ptr<UINT32> m_s3c240x_ram;
UINT8 *m_eeprom_data;
@@ -176,8 +176,8 @@ public:
DECLARE_WRITE32_MEMBER(s3c240x_spi_w);
DECLARE_READ32_MEMBER(s3c240x_mmc_r);
DECLARE_WRITE32_MEMBER(s3c240x_mmc_w);
- virtual void machine_start();
- virtual void machine_reset();
+ virtual void machine_start() override;
+ virtual void machine_reset() override;
UINT32 screen_update_gp32(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(s3c240x_lcd_timer_exp);
TIMER_CALLBACK_MEMBER(s3c240x_pwm_timer_exp);