diff options
author | 2020-09-27 11:00:56 +1000 | |
---|---|---|
committer | 2020-09-27 11:00:56 +1000 | |
commit | 6e807013c570ed6b5ff7f950a3b131914b9718f3 (patch) | |
tree | 86eb67544d14d9ee32a18467d7ba859f19f36a51 /src/devices/sound/hc55516.cpp | |
parent | 7dad0f4f58e2e0e59b72f3df672ecfe2c8168545 (diff) |
Disable SOUND_DEBUG for non-debug builds, and srcclean
Diffstat (limited to 'src/devices/sound/hc55516.cpp')
-rw-r--r-- | src/devices/sound/hc55516.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/hc55516.cpp b/src/devices/sound/hc55516.cpp index 4ee6667ede4..5414f378802 100644 --- a/src/devices/sound/hc55516.cpp +++ b/src/devices/sound/hc55516.cpp @@ -188,10 +188,10 @@ void hc55516_device::process_digit() m_next_sample = temp; /* compress the sample range to fit better in a 16-bit word */ -/* if (temp < 0) - m_next_sample = (int)(temp / (-temp * (1.0 / 32768.0) + 1.0)); - else - m_next_sample = (int)(temp / (temp * (1.0 / 32768.0) + 1.0));*/ +/* if (temp < 0) + m_next_sample = (int)(temp / (-temp * (1.0 / 32768.0) + 1.0)); + else + m_next_sample = (int)(temp / (temp * (1.0 / 32768.0) + 1.0));*/ } void hc55516_device::clock_w(int state) |