summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tasc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tasc.cpp')
-rw-r--r--src/mame/drivers/tasc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tasc.cpp b/src/mame/drivers/tasc.cpp
index 7a6d2efa96f..097be9d0600 100644
--- a/src/mame/drivers/tasc.cpp
+++ b/src/mame/drivers/tasc.cpp
@@ -239,7 +239,7 @@ void tasc_state::tasc(machine_config &config)
/* sound hardware */
SPEAKER(config, "mono").front_center();
- static const int16_t speaker_levels[4] = { 0, 32767, -32768, 0 };
+ static const double speaker_levels[4] = { 0.0, 1.0, -1.0, 0.0 };
SPEAKER_SOUND(config, m_speaker).add_route(ALL_OUTPUTS, "mono", 0.75);
m_speaker->set_levels(4, speaker_levels);
}