CDROM: Set seeking bit in stat when seeking

This commit is contained in:
Connor McLaughlin 2020-03-07 15:10:49 +10:00
parent c700913322
commit eb6dbbfb13
1 changed files with 1 additions and 0 deletions

View File

@ -1127,6 +1127,7 @@ void CDROM::BeginSeeking(bool logical, bool read_after_seek, bool play_after_see
m_secondary_status.ClearActiveBits(); m_secondary_status.ClearActiveBits();
m_secondary_status.motor_on = true; m_secondary_status.motor_on = true;
m_secondary_status.seeking = true;
m_sector_buffer.clear(); m_sector_buffer.clear();
m_drive_state = logical ? DriveState::SeekingLogical : DriveState::SeekingPhysical; m_drive_state = logical ? DriveState::SeekingLogical : DriveState::SeekingPhysical;