1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 15:24:30 +01:00

Fix typo in Compression.cpp (#24934)

spelling error for Decompress
This commit is contained in:
73
2025-08-09 06:24:08 -04:00
committed by GitHub
parent f7f4ae8c59
commit 367f797978

View File

@@ -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);