diff options
Diffstat (limited to 'src/devices/machine/eeprompar.h')
-rw-r--r-- | src/devices/machine/eeprompar.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/devices/machine/eeprompar.h b/src/devices/machine/eeprompar.h index 84c4090f14e..e8ed153dd97 100644 --- a/src/devices/machine/eeprompar.h +++ b/src/devices/machine/eeprompar.h @@ -53,12 +53,10 @@ protected: // construction/destruction eeprom_parallel_base_device(const machine_config &mconfig, device_type devtype, const char *name, const char *tag, device_t *owner, const char *shortname, const char *file); -public: - protected: // device-level overrides - virtual void device_start(); - virtual void device_reset(); + virtual void device_start() override; + virtual void device_reset() override; }; |