Merge pull request #9852 from Pokechu22/wii-change-disc
DVDInterface: Fix decrypting reads clearing the drive state
This commit is contained in:
commit
3b3fb9d4c3
|
@ -1251,7 +1251,9 @@ void PerformDecryptingRead(u32 position, u32 length, u32 output_address,
|
|||
const DiscIO::Partition& partition, ReplyType reply_type)
|
||||
{
|
||||
DIInterruptType interrupt_type = DIInterruptType::TCINT;
|
||||
SetDriveState(DriveState::Ready);
|
||||
|
||||
if (s_drive_state == DriveState::ReadyNoReadsMade)
|
||||
SetDriveState(DriveState::Ready);
|
||||
|
||||
const bool command_handled_by_thread =
|
||||
ExecuteReadCommand(static_cast<u64>(position) << 2, output_address, length, length, partition,
|
||||
|
|
Loading…
Reference in New Issue