mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 06:15:38 +00:00
CDROM: Increase ack timing
This commit is contained in:
parent
0092cb1016
commit
dd4b9609b5
|
@ -479,7 +479,7 @@ void CDROM::UpdateStatusRegister()
|
||||||
|
|
||||||
TickCount CDROM::GetAckDelayForCommand() const
|
TickCount CDROM::GetAckDelayForCommand() const
|
||||||
{
|
{
|
||||||
const u32 default_ack_delay = 2000;
|
const u32 default_ack_delay = 10000;
|
||||||
if (m_command == Command::Init)
|
if (m_command == Command::Init)
|
||||||
return 60000;
|
return 60000;
|
||||||
else
|
else
|
||||||
|
@ -934,16 +934,10 @@ void CDROM::BeginReading(bool cdda)
|
||||||
|
|
||||||
if (m_setloc_pending)
|
if (m_setloc_pending)
|
||||||
{
|
{
|
||||||
if (m_media->GetMSFPositionOnDisc() != m_setloc_position)
|
BeginSeeking();
|
||||||
{
|
m_read_after_seek = !cdda;
|
||||||
BeginSeeking();
|
m_play_after_seek = cdda;
|
||||||
m_read_after_seek = !cdda;
|
return;
|
||||||
m_play_after_seek = cdda;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// already in position
|
|
||||||
m_setloc_pending = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m_secondary_status.motor_on = true;
|
m_secondary_status.motor_on = true;
|
||||||
|
@ -1266,6 +1260,7 @@ void CDROM::LoadDataFIFO()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_data_fifo.Clear();
|
||||||
m_data_fifo.PushRange(m_sector_buffer.data(), static_cast<u32>(m_sector_buffer.size()));
|
m_data_fifo.PushRange(m_sector_buffer.data(), static_cast<u32>(m_sector_buffer.size()));
|
||||||
m_sector_buffer.clear();
|
m_sector_buffer.clear();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue