Skip to content
Permalink
Browse files
Merge pull request #9060 from Pokechu22/ignore-pi-reset-code
Ignore PI_RESET_CODE resetting DI in Wii mode
  • Loading branch information
JMC47 committed Sep 8, 2020
2 parents b350cf0 + 8142712 commit 3d33b1c
Showing 1 changed file with 1 addition and 1 deletion.
@@ -119,7 +119,7 @@ void RegisterMMIO(MMIO::Mapping* mmio, u32 base)
MMIO::ComplexWrite<u32>([](u32, u32 val) {
m_ResetCode = val;
INFO_LOG(PROCESSORINTERFACE, "Wrote PI_RESET_CODE: %08x", m_ResetCode);
if (~m_ResetCode & 0x4)
if (!SConfig::GetInstance().bWii && ~m_ResetCode & 0x4)
{
DVDInterface::ResetDrive(true);
}

0 comments on commit 3d33b1c

Please sign in to comment.