diff options
Diffstat (limited to 'src/devices/sound/tc8830f.h')
-rw-r--r-- | src/devices/sound/tc8830f.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/tc8830f.h b/src/devices/sound/tc8830f.h index a8b9a2c62f9..655e83167a6 100644 --- a/src/devices/sound/tc8830f.h +++ b/src/devices/sound/tc8830f.h @@ -41,11 +41,11 @@ public: protected: // device-level overrides - virtual void device_start(); - virtual void device_post_load(); - virtual void device_clock_changed(); + virtual void device_start() override; + virtual void device_post_load() override; + virtual void device_clock_changed() override; - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples); + virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; private: bool m_playing; |