summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2022-04-05 18:00:10 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2022-04-05 18:00:10 +0200
commite00e52e972fdbf1723f240569044303b9452bf75 (patch)
treef75d1913416086103d8f8a38e2d255d2b6e69afb /src/devices/sound
parentdbb3618c709899ca66ea5407e5b33cac8935a174 (diff)
- buggychl.cpp, himesiki.cpp, surpratk.cpp: finders and other small cleanups
- discrete.cpp, mac.cpp: initialized some variables which were causing problems - centiped.cpp: added 82s153 dump for bullsdrt [chaneman]
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/discrete.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/discrete.cpp b/src/devices/sound/discrete.cpp
index 47e517af633..0ad9f34562a 100644
--- a/src/devices/sound/discrete.cpp
+++ b/src/devices/sound/discrete.cpp
@@ -353,7 +353,7 @@ discrete_base_node::discrete_base_node() :
m_input_intf(nullptr),
m_output_intf(nullptr)
{
- m_output[0] = 0.0;
+ std::fill(std::begin(m_output), std::end(m_output), 0.0);
}