From eb2339ee1bcf59e7a669b1040c865d6eb5ca573b Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sat, 16 Feb 2019 13:12:18 +0200 Subject: [PATCH] Reduce CDTV CD startup/seek delays, fixes Town without no name speech audiotrack problems. --- cdtv.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdtv.cpp b/cdtv.cpp index f019aa86..48cae849 100644 --- a/cdtv.cpp +++ b/cdtv.cpp @@ -262,9 +262,9 @@ static void subfunc (uae_u8 *data, int cnt) static int statusfunc (int status, int playpos) { if (status == -1) - return 500; + return 150; if (status == -2) - return 75; + return 20; if (cd_audio_status != status) { if (status == AUDIO_STATUS_PLAY_COMPLETE || status == AUDIO_STATUS_PLAY_ERROR) { cd_audio_finished = 1; -- 2.47.3