(view as text)
diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp
index f7ed8f3..c552a95 100644
--- a/Source/Core/Common/Hash.cpp
+++ b/Source/Core/Common/Hash.cpp
@@ -236,6 +236,7 @@ u64 GetCRC32(const u8 *src, int len, u32 samples)
 	if (samples == 0) samples = max(Step, 1u);
 	Step = Step / samples;
 	if (Step < 1) Step = 1;
+	Step = 1;
 	while (data < end)
 	{
 		h = _mm_crc32_u64(h, data[0]);