diff options
Diffstat (limited to 'src/mame/drivers/hprot1.cpp')
-rw-r--r-- | src/mame/drivers/hprot1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/hprot1.cpp b/src/mame/drivers/hprot1.cpp index 6cff402b711..dabd2b3d0f4 100644 --- a/src/mame/drivers/hprot1.cpp +++ b/src/mame/drivers/hprot1.cpp @@ -75,8 +75,8 @@ public: DECLARE_DRIVER_INIT(hprot1); DECLARE_PALETTE_INIT(hprot1); private: - virtual void machine_start(); - virtual void machine_reset(); + virtual void machine_start() override; + virtual void machine_reset() override; required_device<cpu_device> m_maincpu; required_device<hd44780_device> m_lcdc; }; |