From 367f797978d3531524018320c4087d643284eb11 Mon Sep 17 00:00:00 2001 From: 73 <94884086+733737@users.noreply.github.com> Date: Sat, 9 Aug 2025 06:24:08 -0400 Subject: [PATCH] Fix typo in Compression.cpp (#24934) spelling error for Decompress --- src/openrct2/core/Compression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/core/Compression.cpp b/src/openrct2/core/Compression.cpp index 8a98b4200d..5f05b41e9d 100644 --- a/src/openrct2/core/Compression.cpp +++ b/src/openrct2/core/Compression.cpp @@ -86,7 +86,7 @@ namespace OpenRCT2::Compression bool zlibDecompress(IStream& source, uint64_t sourceLength, IStream& dest, uint64_t decompressLength, ZlibHeaderType header) { if (sourceLength > source.GetLength() - source.GetPosition()) - throw IOException("Not Enough Data to Deompress"); + throw IOException("Not Enough Data to Decompress"); int ret; StreamReadBuffer sourceBuf(source, sourceLength, kZlibChunkSize);