summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2020-09-23 22:01:03 -0400
committer Scott Stone <tafoid@gmail.com>2020-09-23 22:01:03 -0400
commit65ed730445db9fdae60f7b403de1461ee5a9b5b8 (patch)
tree6a4a35062d23386c80afd646f1425383a7867d4b /src
parentdf19e87ffc98b1db3fe936cf83b022c9ad9a931f (diff)
audio/gottlieb.cpp: Tweaked Votrax speech frequency settings to better match samples/recording for Q*bert.
Diffstat (limited to 'src')
-rw-r--r--src/mame/audio/gottlieb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/audio/gottlieb.cpp b/src/mame/audio/gottlieb.cpp
index db7d34b0ccc..69dbeb41a1d 100644
--- a/src/mame/audio/gottlieb.cpp
+++ b/src/mame/audio/gottlieb.cpp
@@ -379,7 +379,7 @@ void gottlieb_sound_r1_with_votrax_device::speech_clock_dac_w(uint8_t data)
logerror("clock = %02X\n", data);
// totally random guesswork; would like to get real measurements on a board
- m_votrax->set_unscaled_clock(900000 + (data - 0xa0) * 9000);
+ m_votrax->set_unscaled_clock(950000 + (data - 0xa0) * 5500);
m_last_speech_clock = data;
}
}