aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/midi.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2011-11-02 22:55:58 +0000
committerEugene Sandulenko2011-11-02 22:55:58 +0000
commit0e1affcc97a856d5c4d6cdd76eaf7d26f8ab4c9c (patch)
treedfcc6230a811f45193b9bda516d53e0a4f09e46c /engines/agos/midi.cpp
parentd0bb81f5661879f81fb1a17174fa7f2e9085c698 (diff)
downloadscummvm-rg350-0e1affcc97a856d5c4d6cdd76eaf7d26f8ab4c9c.tar.gz
scummvm-rg350-0e1affcc97a856d5c4d6cdd76eaf7d26f8ab4c9c.tar.bz2
scummvm-rg350-0e1affcc97a856d5c4d6cdd76eaf7d26f8ab4c9c.zip
AGOS: Fix warnings
Diffstat (limited to 'engines/agos/midi.cpp')
-rw-r--r--engines/agos/midi.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agos/midi.cpp b/engines/agos/midi.cpp
index 431f080bf2..b3ade91107 100644
--- a/engines/agos/midi.cpp
+++ b/engines/agos/midi.cpp
@@ -478,7 +478,7 @@ void MidiPlayer::loadMultipleSMF(Common::File *in, bool sfx) {
// Make sure there's a MThd
in->read(buf, 4);
- if (memcmp(buf, "MThd", 4)) {
+ if (memcmp(buf, "MThd", 4) != 0) {
warning("Expected MThd but found '%c%c%c%c' instead", buf[0], buf[1], buf[2], buf[3]);
return;
}
@@ -487,7 +487,7 @@ void MidiPlayer::loadMultipleSMF(Common::File *in, bool sfx) {
// Now skip all the MTrk blocks
while (true) {
in->read(buf, 4);
- if (memcmp(buf, "MTrk", 4))
+ if (memcmp(buf, "MTrk", 4) != 0)
break;
in->seek(in->readUint32BE(), SEEK_CUR);
}
@@ -524,7 +524,7 @@ void MidiPlayer::loadXMIDI(Common::File *in, bool sfx) {
memcpy(buf, &buf[2], 2);
in->read(&buf[2], 2);
}
- if (memcmp(buf, "CAT ", 4)) {
+ if (memcmp(buf, "CAT ", 4) != 0) {
error("Could not find 'CAT ' tag to determine resource size");
}
size += 4 + in->readUint32BE();