mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 06:25:37 +00:00
CDROM: Fix crash when changing readahead sectors
This commit is contained in:
parent
17e554498f
commit
e1383d15aa
|
@ -438,7 +438,8 @@ void CDROM::SetReadaheadSectors(u32 readahead_sectors)
|
||||||
else
|
else
|
||||||
m_reader.StopThread();
|
m_reader.StopThread();
|
||||||
|
|
||||||
m_reader.QueueReadSector(m_requested_lba);
|
if (HasMedia())
|
||||||
|
m_reader.QueueReadSector(m_requested_lba);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CDROM::CPUClockChanged()
|
void CDROM::CPUClockChanged()
|
||||||
|
|
Loading…
Reference in a new issue