summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/multipcm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/multipcm.h')
-rw-r--r--src/devices/sound/multipcm.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/devices/sound/multipcm.h b/src/devices/sound/multipcm.h
index 950905e47b8..388dfe6b84c 100644
--- a/src/devices/sound/multipcm.h
+++ b/src/devices/sound/multipcm.h
@@ -20,14 +20,14 @@ public:
protected:
// device-level overrides
- virtual void device_config_complete();
- virtual void device_start();
+ virtual void device_config_complete() override;
+ virtual void device_start() override;
// sound stream update overrides
- 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;
// device_memory_interface overrides
- virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const;
+ virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override;
const address_space_config m_space_config;
@@ -98,7 +98,7 @@ private:
// internal state
sound_stream *m_stream;
- sample_t *m_samples; // Max 512 samples
+ sample_t *m_samples; // Max 512 samples
slot_t *m_slots;
UINT32 m_cur_slot;
UINT32 m_address;
@@ -107,8 +107,8 @@ private:
float m_rate;
UINT32 *m_attack_step;
- UINT32 *m_decay_release_step; // Envelope step tables
- UINT32 *m_freq_step_table; // Frequency step table
+ UINT32 *m_decay_release_step; // Envelope step tables
+ UINT32 *m_freq_step_table; // Frequency step table
direct_read_data *m_direct;