CDROM: Fix crash when changing readahead sectors

This commit is contained in:
Connor McLaughlin 2022-08-01 19:34:52 +10:00
parent 17e554498f
commit e1383d15aa

View file

@ -438,6 +438,7 @@ void CDROM::SetReadaheadSectors(u32 readahead_sectors)
else
m_reader.StopThread();
if (HasMedia())
m_reader.QueueReadSector(m_requested_lba);
}