DiscIO: Remove unnecessary break statements.

This commit is contained in:
Lioncash
2014-09-12 11:30:36 -04:00
parent 64b21a4812
commit 4db2af2d42
2 changed files with 0 additions and 14 deletions

View File

@ -94,7 +94,6 @@ IVolume* CreateVolumeFromFilename(const std::string& _rFilename, u32 _PartitionG
return pVolume;
}
break;
case DISC_TYPE_UNK:
default:
@ -104,10 +103,8 @@ IVolume* CreateVolumeFromFilename(const std::string& _rFilename, u32 _PartitionG
NOTICE_LOG(DISCIO, "%s does not have the Magic word for a gcm, wiidisc or wad file\n"
"Set Log Verbosity to Warning and attempt to load the game again to view the values", Filename.c_str());
delete pReader;
return nullptr;
}
// unreachable code
return nullptr;
}