From 65ed730445db9fdae60f7b403de1461ee5a9b5b8 Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Wed, 23 Sep 2020 22:01:03 -0400 Subject: audio/gottlieb.cpp: Tweaked Votrax speech frequency settings to better match samples/recording for Q*bert. --- src/mame/audio/gottlieb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- cgit v1.2.3