-reverted a change that broke some emu nands

This commit is contained in:
fix94.1 2012-08-26 18:45:54 +00:00
parent 41613a9778
commit b8da744d09

View File

@ -125,8 +125,7 @@ int CMenu::_FindEmuPart(string *emuPath, int part, bool searchvalid)
}
}
if(((_TestEmuNand(emuPartition, tmpPath.c_str(), true) && m_current_view == COVERFLOW_USB) || m_current_view == COVERFLOW_CHANNEL)
&& DeviceHandler::Instance()->IsInserted(emuPartition) && DeviceHandler::Instance()->GetFSType(emuPartition) == PART_FS_FAT)
if(_TestEmuNand(emuPartition, tmpPath.c_str(), true) && DeviceHandler::Instance()->IsInserted(emuPartition) && DeviceHandler::Instance()->GetFSType(emuPartition) == PART_FS_FAT)
{
*emuPath = tmpPath;
return emuPartition;