From 31eec8c75ba103c4920a5026bc84db28a9f3af78 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 8 Apr 2017 18:45:01 +0200 Subject: [PATCH] Boot: Remove useless check No disc is inserted at this point, so IsDiscInside is always false. --- Source/Core/Core/Boot/Boot.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Source/Core/Core/Boot/Boot.cpp b/Source/Core/Core/Boot/Boot.cpp index 93fa76947f..d54206a93d 100644 --- a/Source/Core/Core/Boot/Boot.cpp +++ b/Source/Core/Core/Boot/Boot.cpp @@ -340,9 +340,7 @@ bool CBoot::BootUp() { BS2Success = EmulatedBS2(dolWii); } - else if ((!DVDInterface::IsDiscInside() || - DVDInterface::GetVolume().GetVolumeType() != DiscIO::Platform::WII_DISC) && - !_StartupPara.m_strDefaultISO.empty()) + else if (!_StartupPara.m_strDefaultISO.empty()) { DVDInterface::SetVolumeName(_StartupPara.m_strDefaultISO); BS2Success = EmulatedBS2(dolWii);