aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2008-01-16 20:03:54 +0000
committerPaweł Kołodziejski2008-01-16 20:03:54 +0000
commit6b330411722ea543bce081f04c3fa4708e365159 (patch)
tree2017e859e8a05b3dc0b5ca41aa171273ba0b8e49
parentbb2c102cbbb1cfa8aa647fbb13aa1620cc40db54 (diff)
downloadscummvm-rg350-6b330411722ea543bce081f04c3fa4708e365159.tar.gz
scummvm-rg350-6b330411722ea543bce081f04c3fa4708e365159.tar.bz2
scummvm-rg350-6b330411722ea543bce081f04c3fa4708e365159.zip
ops
svn-id: r30519
-rw-r--r--engines/scumm/imuse_digi/dimuse_sndmgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
index aec308e6b0..db18f966c7 100644
--- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
+++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
@@ -101,10 +101,10 @@ void ImuseDigiSndMgr::prepareSoundFromRMAP(Common::File *file, SoundDesc *sound,
assert(tag == MKID_BE('RMAP'));
int32 version = file->readUint32BE();
if (version != 3) {
- if (version == 2)
+ if (version == 2) {
warning("ImuseDigiSndMgr::prepareSoundFromRMAP: Wrong version of compressed *.bun file, expected 3, but it's 2.");
warning("Suggested to recompress with latest tool from daily builds.");
- else
+ } else
error("ImuseDigiSndMgr::prepareSoundFromRMAP: Wrong version number, expected 3, but it's: %d.", version);
}
sound->bits = file->readUint32BE();