summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/c140.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/c140.cpp')
-rw-r--r--src/devices/sound/c140.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/c140.cpp b/src/devices/sound/c140.cpp
index f4986fd35ca..7f3780c8ed3 100644
--- a/src/devices/sound/c140.cpp
+++ b/src/devices/sound/c140.cpp
@@ -206,7 +206,7 @@ void c140_device::device_clock_changed()
/* allocate a pair of buffers to mix into - 1 second's worth should be more than enough */
m_mixer_buffer_left = std::make_unique<s16[]>(m_sample_rate);
- m_mixer_buffer_right = std::make_unique<s16[]>(m_sample_rate);;
+ m_mixer_buffer_right = std::make_unique<s16[]>(m_sample_rate);
}