summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos6560.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mos6560.h')
-rw-r--r--src/devices/sound/mos6560.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mos6560.h b/src/devices/sound/mos6560.h
index 6937fdf4eac..182cba47dba 100644
--- a/src/devices/sound/mos6560.h
+++ b/src/devices/sound/mos6560.h
@@ -176,8 +176,8 @@ protected:
m_noisesamples; /* count of samples to give out per tone */
sound_stream *m_channel;
- std::vector<int16_t> m_tone;
- std::vector<int8_t> m_noise;
+ std::unique_ptr<int16_t []> m_tone;
+ std::unique_ptr<int8_t []> m_noise;
emu_timer *m_line_timer;
};