add override qualifier

This commit is contained in:
Vas Crabb 2016-08-11 11:37:39 +10:00
parent 6d9e7e7bdb
commit e7b32f3a40

View File

@ -487,7 +487,7 @@ public:
hdc9224_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
int step_time();
int step_time() override;
};
class hdc9234_device : public hdc92x4_device
@ -496,7 +496,7 @@ public:
hdc9234_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
protected:
int step_time();
int step_time() override;
};
#endif