mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Fix DVDLowReset spinup flag being read incorrectly
This commit is contained in:
@ -266,7 +266,7 @@ std::optional<DI::DIResult> DI::StartIOCtl(const IOCtlRequest& request)
|
|||||||
return DIResult::Success;
|
return DIResult::Success;
|
||||||
case DIIoctl::DVDLowReset:
|
case DIIoctl::DVDLowReset:
|
||||||
{
|
{
|
||||||
const bool spinup = Memory::Read_U32(request.address + 4);
|
const bool spinup = Memory::Read_U32(request.buffer_in + 4);
|
||||||
INFO_LOG(IOS_DI, "DVDLowReset %s spinup", spinup ? "with" : "without");
|
INFO_LOG(IOS_DI, "DVDLowReset %s spinup", spinup ? "with" : "without");
|
||||||
DVDInterface::ResetDrive(spinup);
|
DVDInterface::ResetDrive(spinup);
|
||||||
ResetDIRegisters();
|
ResetDIRegisters();
|
||||||
|
Reference in New Issue
Block a user