diff options
-rw-r--r-- | scumm/smush/saud_channel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/smush/saud_channel.cpp b/scumm/smush/saud_channel.cpp index 566ef49310..74ab1e4094 100644 --- a/scumm/smush/saud_channel.cpp +++ b/scumm/smush/saud_channel.cpp @@ -30,7 +30,7 @@ namespace Scumm { void SaudChannel::handleStrk(Chunk &b) { int32 size = b.getSize(); if (size != 14 && size != 10) { - error("STRK has a invalid size : %d", size); + error("STRK has an invalid size : %d", size); } } @@ -41,7 +41,7 @@ void SaudChannel::handleSmrk(Chunk &b) { void SaudChannel::handleShdr(Chunk &b) { int32 size = b.getSize(); if (size != 4) - error("SMRK has a invalid size : %d", size); + error("SHDR has an invalid size : %d", size); } bool SaudChannel::handleSubTags(int32 &offset) { |