Boot: Remove useless check

No disc is inserted at this point, so IsDiscInside is always false.
This commit is contained in:
JosJuice 2017-04-08 18:45:01 +02:00
parent eb45ea5f7f
commit 31eec8c75b
1 changed files with 1 additions and 3 deletions

View File

@ -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);