aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/smush_mixer.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-03-28 14:48:05 +0000
committerTorbjörn Andersson2004-03-28 14:48:05 +0000
commit165e6c5eb51fbbd39d5f42f193b0c1cf6e3d4a34 (patch)
treee51af27b6f30d7499a3397a694d91f67bd5bf476 /scumm/smush/smush_mixer.cpp
parentb25f42535b813d022270f7b9f158510130a212bb (diff)
downloadscummvm-rg350-165e6c5eb51fbbd39d5f42f193b0c1cf6e3d4a34.tar.gz
scummvm-rg350-165e6c5eb51fbbd39d5f42f193b0c1cf6e3d4a34.tar.bz2
scummvm-rg350-165e6c5eb51fbbd39d5f42f193b0c1cf6e3d4a34.zip
Fixed format string to match the number of arguments.
svn-id: r13404
Diffstat (limited to 'scumm/smush/smush_mixer.cpp')
-rw-r--r--scumm/smush/smush_mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp
index ea6e39b887..7be2cdf604 100644
--- a/scumm/smush/smush_mixer.cpp
+++ b/scumm/smush/smush_mixer.cpp
@@ -77,7 +77,7 @@ void SmushMixer::addChannel(SmushChannel *c) {
}
for (i = 0; i < NUM_CHANNELS; i++) {
- warning("channel %d : %p(%d, %d) %d", i, (void *)_channels[i].chan,
+ warning("channel %d : %p(%d, %d)", i, (void *)_channels[i].chan,
_channels[i].chan ? _channels[i].chan->getTrackIdentifier() : -1,
_channels[i].chan ? _channels[i].chan->isTerminated() : 1);
}