summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/DiscScrubber.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2019-10-26 15:01:52 -0400
committerGitHub <noreply@github.com>2019-10-26 15:01:52 -0400
commitfed2dce404283204bb6beba755924b4738b2d508 (patch)
tree398d2dab4291c48e074855f65b5f039fd6bf5ae7 /Source/Core/DiscIO/DiscScrubber.cpp
parentf54faedd7624d156f1b05e620ecf5aae9acbb8d5 (diff)
parent742aa765c6859c22c8e294f31aca10e1a9606701 (diff)
Merge pull request #8425 from JosJuice/volumeverifier-datel-wii
VolumeVerifier: Improve handling of Datel Wii Freeloader discs
Diffstat (limited to 'Source/Core/DiscIO/DiscScrubber.cpp')
-rw-r--r--Source/Core/DiscIO/DiscScrubber.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/DiscIO/DiscScrubber.cpp b/Source/Core/DiscIO/DiscScrubber.cpp
index 121f5dbe25..6e2ba07646 100644
--- a/Source/Core/DiscIO/DiscScrubber.cpp
+++ b/Source/Core/DiscIO/DiscScrubber.cpp
@@ -47,10 +47,6 @@ bool DiscScrubber::SetupScrub(const Volume* disc, int block_size)
// Round up when diving by CLUSTER_SIZE, otherwise MarkAsUsed might write out of bounds
const size_t num_clusters = static_cast<size_t>((m_file_size + CLUSTER_SIZE - 1) / CLUSTER_SIZE);
- // Warn if not DVD5 or DVD9 size
- if (num_clusters != 0x23048 && num_clusters != 0x46090)
- WARN_LOG(DISCIO, "Not a standard sized Wii disc! (%zx blocks)", num_clusters);
-
// Table of free blocks
m_free_table.resize(num_clusters, 1);