From b8da744d0923f9c5ed0998f71ff596eb303383fa Mon Sep 17 00:00:00 2001 From: "fix94.1" Date: Sun, 26 Aug 2012 18:45:54 +0000 Subject: [PATCH] -reverted a change that broke some emu nands --- source/menu/menu_nandemu.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/menu/menu_nandemu.cpp b/source/menu/menu_nandemu.cpp index 2c186e0c..1ccae1e8 100644 --- a/source/menu/menu_nandemu.cpp +++ b/source/menu/menu_nandemu.cpp @@ -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;