From 17c554c1656fc6ea2df1463a97628379954b65ed Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Fri, 22 Jul 2022 08:52:26 -0700 Subject: Common/Hash: use zlib-ng for adler32. small cleanups. --- Source/Core/DiscIO/VolumeVerifier.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp') diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 33828382a9..1e5f6515f0 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -1175,8 +1175,8 @@ void VolumeVerifier::Process() if (m_hashes_to_calculate.crc32) { m_crc32_future = std::async(std::launch::async, [this, byte_increment] { - m_crc32_context = - Common::UpdateCRC32(m_crc32_context, m_data.data(), static_cast(byte_increment)); + m_crc32_context = Common::UpdateCRC32(m_crc32_context, m_data.data(), + static_cast(byte_increment)); }); } -- cgit v1.2.3