From f51cd07c1ebfc46d5eedcbcd33aab15c87382748 Mon Sep 17 00:00:00 2001 From: BJNFNE Date: Thu, 31 Aug 2023 16:00:34 +0200 Subject: [PATCH] GOB: changed error messages for STK21 in compress_gob --- engines/gob/compress_gob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/gob/compress_gob.cpp b/engines/gob/compress_gob.cpp index 68fb3169..d71f7e68 100644 --- a/engines/gob/compress_gob.cpp +++ b/engines/gob/compress_gob.cpp @@ -125,7 +125,7 @@ CompressGob::Chunk *CompressGob::readChunkConf(Common::File &gobConf, Common::Fi gobConf.scanString(buffer); std::string signature(buffer); if (signature == confSTK21) - error("STK21 not yet handled"); + error("STK21 is not implemented yet"); else if (signature != confSTK10) error("Unknown format signature %s", signature.c_str());