Boot: Remove useless check
No disc is inserted at this point, so IsDiscInside is always false.
This commit is contained in:
parent
eb45ea5f7f
commit
31eec8c75b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue