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