diff options
author | Gregory Montoir | 2005-08-19 22:36:49 +0000 |
---|---|---|
committer | Gregory Montoir | 2005-08-19 22:36:49 +0000 |
commit | 8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa (patch) | |
tree | 01ee81586d5c68b595037bcd37f3f3c62d57f6cb | |
parent | e086ecec676ea686d0f739084ace4d194d70ef24 (diff) | |
download | scummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.tar.gz scummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.tar.bz2 scummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.zip |
typo
svn-id: r18707
-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) { |