summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/spu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-12-05 20:56:56 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-12-05 21:20:54 +0100
commit1db2b0d6b40ff3635b637f5e854c5fd62a9db169 (patch)
treefe5dc2f9dcf84c4619d9f21f9db20cd108fc0768 /src/devices/sound/spu.h
parent1c4865d66ff88a6891ebdde4580c3d61ee46ffa2 (diff)
override part 2 (nw)
Diffstat (limited to 'src/devices/sound/spu.h')
-rw-r--r--src/devices/sound/spu.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/spu.h b/src/devices/sound/spu.h
index 8a6727e4833..4c0a090bd71 100644
--- a/src/devices/sound/spu.h
+++ b/src/devices/sound/spu.h
@@ -46,12 +46,12 @@ class spu_device : public device_t, public device_sound_interface
protected:
// device-level overrides
- virtual void device_start();
- virtual void device_reset();
- virtual void device_post_load();
- virtual void device_stop();
+ virtual void device_start() override;
+ virtual void device_reset() override;
+ virtual void device_post_load() override;
+ virtual void device_stop() 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;
// internal state
devcb_write_line m_irq_handler;