From 61e97c9a099ed00261e299ddc43bc22c1479e220 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Wed, 29 Jul 2026 18:15:38 +0200 Subject: Replace zero constants with `nullptr` --- Source/Core/Common/Hash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/Hash.cpp') diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp index a3984745f5..3756bdcad4 100644 --- a/Source/Core/Common/Hash.cpp +++ b/Source/Core/Common/Hash.cpp @@ -427,7 +427,7 @@ u64 GetHash64(const u8* src, u32 len, u32 samples) u32 StartCRC32() { - return crc32_z(0L, Z_NULL, 0); + return crc32_z(0L, nullptr, 0); } u32 UpdateCRC32(u32 crc, const u8* data, size_t len) -- cgit v1.2.3