aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush
diff options
context:
space:
mode:
authorGregory Montoir2005-08-19 22:36:49 +0000
committerGregory Montoir2005-08-19 22:36:49 +0000
commit8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa (patch)
tree01ee81586d5c68b595037bcd37f3f3c62d57f6cb /scumm/smush
parente086ecec676ea686d0f739084ace4d194d70ef24 (diff)
downloadscummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.tar.gz
scummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.tar.bz2
scummvm-rg350-8b31ef5dc4aca7668d389ba4ed72f1828b3bf9aa.zip
typo
svn-id: r18707
Diffstat (limited to 'scumm/smush')
-rw-r--r--scumm/smush/saud_channel.cpp4
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) {