From 95a4f449772c2aba6572f4a5bdb4d6a5b4ab5bfd Mon Sep 17 00:00:00 2001 From: tomcw Date: Sun, 28 Jul 2024 16:29:19 +0100 Subject: [PATCH] MB: SC-01: disable phoneme playback repeat. (#1318) --- source/SSI263.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/SSI263.cpp b/source/SSI263.cpp index 8d11c6a6..b2e2875a 100644 --- a/source/SSI263.cpp +++ b/source/SSI263.cpp @@ -698,8 +698,8 @@ void SSI263::Update(void) { if (!m_isVotraxPhoneme) Play(m_durationPhoneme & PHONEME_MASK); // Repeat this phoneme again - else - Play(m_Votrax2SSI263[m_votraxPhoneme]); // Votrax phoneme repeats too (tested in MAME 0.262) +// else // GH#1318 - remove for now, as TR v5.1 can start with repeating phoneme in debugger 'g' mode! +// Play(m_Votrax2SSI263[m_votraxPhoneme]); // Votrax phoneme repeats too (tested in MAME 0.262) } }