From dc487655df19269bc7bb4098c806311372043a44 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Thu, 30 Apr 2020 01:36:05 +1000 Subject: [PATCH] CDROM: More timing refinements --- src/core/cdrom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/cdrom.cpp b/src/core/cdrom.cpp index cf2855873..b515db3f5 100644 --- a/src/core/cdrom.cpp +++ b/src/core/cdrom.cpp @@ -538,8 +538,8 @@ TickCount CDROM::GetAckDelayForCommand(Command command) // Tests show that the average time to acknowledge a command is significantly higher when a disc is in the drive, // presumably because the controller is busy doing discy-things. - constexpr u32 default_ack_delay_no_disc = 5000; - constexpr u32 default_ack_delay_with_disc = 15000; + constexpr u32 default_ack_delay_no_disc = 15000; + constexpr u32 default_ack_delay_with_disc = 25000; return HasMedia() ? default_ack_delay_with_disc : default_ack_delay_no_disc; }