summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeWiiCrypted.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2017-06-04 14:20:20 +0200
committerJosJuice <josjuice@gmail.com>2017-06-04 14:20:20 +0200
commit2ce9281f77bb1ba2ca88cfa7152ef69480658e5a (patch)
tree592e6d6fadea49c79ce7b0cf42663f7d73a129f4 /Source/Core/DiscIO/VolumeWiiCrypted.cpp
parent60655258875df503bbc47262972622f1c01fc408 (diff)
Don't show FST size in game properties
Normal users don't care about it. In fact, people care so little about it that the Wii implementation of it was broken starting from when it was implemented (eb65601) to 7 years later (e0a47c1), apparently without anyone reporting it.
Diffstat (limited to 'Source/Core/DiscIO/VolumeWiiCrypted.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeWiiCrypted.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/Core/DiscIO/VolumeWiiCrypted.cpp b/Source/Core/DiscIO/VolumeWiiCrypted.cpp
index 9281529254..3b31d126fe 100644
--- a/Source/Core/DiscIO/VolumeWiiCrypted.cpp
+++ b/Source/Core/DiscIO/VolumeWiiCrypted.cpp
@@ -295,16 +295,6 @@ std::vector<u32> CVolumeWiiCrypted::GetBanner(int* width, int* height) const
return GetWiiBanner(width, height, *title_id);
}
-u64 CVolumeWiiCrypted::GetFSTSize(const Partition& partition) const
-{
- u32 size;
-
- if (!Read(0x428, 0x4, (u8*)&size, partition))
- return 0;
-
- return (u64)Common::swap32(size) << 2;
-}
-
std::string CVolumeWiiCrypted::GetApploaderDate(const Partition& partition) const
{
char date[16];