CDROM: More timing refinements

This commit is contained in:
Connor McLaughlin 2020-04-30 01:36:05 +10:00
parent 5a6c029814
commit dc487655df
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}