summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/hc55516.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/hc55516.cpp')
-rw-r--r--src/devices/sound/hc55516.cpp8
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)