svn-id: r18707
This commit is contained in:
Gregory Montoir 2005-08-19 22:36:49 +00:00
parent e086ecec67
commit 8b31ef5dc4

View File

@ -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) {