aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse_digi
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-09-12 18:21:21 +0000
committerTorbjörn Andersson2004-09-12 18:21:21 +0000
commitdc461ca770c763aae6888269ce115d4890f95bc6 (patch)
tree13f6431ded773e184e8bec734b2234dd1ad425ab /scumm/imuse_digi
parent7688c017e162fc0808891eee22e074b69d651abf (diff)
downloadscummvm-rg350-dc461ca770c763aae6888269ce115d4890f95bc6.tar.gz
scummvm-rg350-dc461ca770c763aae6888269ce115d4890f95bc6.tar.bz2
scummvm-rg350-dc461ca770c763aae6888269ce115d4890f95bc6.zip
Fixed some other cases where the number of parameters to our message-
printing functions didn't agree with the format strings. GCC will find a couple of other things to warn about if these functions are labelled as printf()-style functions, but those were less important, I think. svn-id: r15081
Diffstat (limited to 'scumm/imuse_digi')
-rw-r--r--scumm/imuse_digi/dimuse_sndmgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_digi/dimuse_sndmgr.cpp b/scumm/imuse_digi/dimuse_sndmgr.cpp
index 390553f6b6..3e555b8b99 100644
--- a/scumm/imuse_digi/dimuse_sndmgr.cpp
+++ b/scumm/imuse_digi/dimuse_sndmgr.cpp
@@ -419,7 +419,7 @@ int ImuseDigiSndMgr::getNumJumps(soundStruct *soundHandle) {
}
int ImuseDigiSndMgr::getRegionOffset(soundStruct *soundHandle, int region) {
- debug(5, "getRegionOffset() region:%d");
+ debug(5, "getRegionOffset() region:%d", region);
assert(checkForProperHandle(soundHandle));
assert(region >= 0 && region < soundHandle->numRegions);
return soundHandle->region[region].offset;