summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/VolumeCommon.cpp
diff options
context:
space:
mode:
authorLPFaint99 <lpfaint99@gmail.com>2010-09-06 04:36:58 +0000
committerLPFaint99 <lpfaint99@gmail.com>2010-09-06 04:36:58 +0000
commit3bdeb923ef78eccd1efeae694d774d696a6da5d3 (patch)
tree53a924f3d3f0907bf41b213595494e1726334719 /Source/Core/DiscIO/Src/VolumeCommon.cpp
parent402b1d83e2e5ea059a8ccd3dba558180b83178e6 (diff)
Some work towards launching by titleid rather than content path,
update some var names in WII_IPC_HLE_Device_fs, filter out some spam logs from VolumeCommon git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6182 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/VolumeCommon.cpp')
-rw-r--r--Source/Core/DiscIO/Src/VolumeCommon.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeCommon.cpp b/Source/Core/DiscIO/Src/VolumeCommon.cpp
index de8c22334f..fe4f3642ac 100644
--- a/Source/Core/DiscIO/Src/VolumeCommon.cpp
+++ b/Source/Core/DiscIO/Src/VolumeCommon.cpp
@@ -71,7 +71,8 @@ IVolume::ECountry CountrySwitch(u8 CountryCode)
break;
default:
- WARN_LOG(DISCIO, "Unknown Country Code! %c", CountryCode);
+ if (CountryCode > 'A') // Silently ignore IOS wads
+ WARN_LOG(DISCIO, "Unknown Country Code! %c", CountryCode);
return IVolume::COUNTRY_UNKNOWN;
break;
}