summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-09-14 01:58:44 +0200
committerPierre Bourdon <delroth@gmail.com>2014-09-14 01:58:44 +0200
commiteee473ed5fd5615c973db32600d80c3c3e2bbefd (patch)
tree35dae75aee95f466f8a4b59edbe18a7e77a17088 /Source
parent9607cc4159b382a8c8d12467fe6fe3bc0cdc1f3c (diff)
parent4db2af2d42da5960b337e1cea8795598d4a947e8 (diff)
Merge pull request #1066 from lioncash/breaks
DiscIO: Remove unnecessary break statements.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DiscIO/VolumeCommon.cpp11
-rw-r--r--Source/Core/DiscIO/VolumeCreator.cpp3
2 files changed, 0 insertions, 14 deletions
diff --git a/Source/Core/DiscIO/VolumeCommon.cpp b/Source/Core/DiscIO/VolumeCommon.cpp
index 6db8bf21f2..cc2f468b7e 100644
--- a/Source/Core/DiscIO/VolumeCommon.cpp
+++ b/Source/Core/DiscIO/VolumeCommon.cpp
@@ -21,7 +21,6 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
// PAL
case 'D': // German
return IVolume::COUNTRY_GERMANY;
- break;
case 'X': // Used by a couple PAL games
case 'Y': // German, french
@@ -32,50 +31,40 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
case 'P':
case 'U': // Australia
return IVolume::COUNTRY_EUROPE;
- break;
case 'F':
return IVolume::COUNTRY_FRANCE;
- break;
case 'I':
return IVolume::COUNTRY_ITALY;
- break;
case 'R':
return IVolume::COUNTRY_RUSSIA;
- break;
// NTSC
case 'E':
case 'N': // Japanese import to USA and other NTSC regions
case 'Z': // Prince Of Persia - The Forgotten Sands (WII)
return IVolume::COUNTRY_USA;
- break;
case 'J':
return IVolume::COUNTRY_JAPAN;
- break;
case 'K':
case 'T': // Korea with English language
case 'Q': // Korea with Japanese language
return IVolume::COUNTRY_KOREA;
- break;
case 'O':
return IVolume::COUNTRY_SDK;
- break;
case 'W':
return IVolume::COUNTRY_TAIWAN;
- break;
default:
if (CountryCode > 'A') // Silently ignore IOS wads
WARN_LOG(DISCIO, "Unknown Country Code! %c", CountryCode);
return IVolume::COUNTRY_UNKNOWN;
- break;
}
}
diff --git a/Source/Core/DiscIO/VolumeCreator.cpp b/Source/Core/DiscIO/VolumeCreator.cpp
index c3f5abeb3d..0b6fc465e8 100644
--- a/Source/Core/DiscIO/VolumeCreator.cpp
+++ b/Source/Core/DiscIO/VolumeCreator.cpp
@@ -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;
}