diff options
author | Max Horn | 2008-07-20 16:27:12 +0000 |
---|---|---|
committer | Max Horn | 2008-07-20 16:27:12 +0000 |
commit | a49a3c6aaa31e3a59c0fa2fec87f82764e6c2bc2 (patch) | |
tree | 4fca6cbe0b3a65d6e332c6621433ca515e8630a9 | |
parent | 8b5e175af45fc0ff3f5cccc29dc4c522516ab2b6 (diff) | |
download | scummvm-rg350-a49a3c6aaa31e3a59c0fa2fec87f82764e6c2bc2.tar.gz scummvm-rg350-a49a3c6aaa31e3a59c0fa2fec87f82764e6c2bc2.tar.bz2 scummvm-rg350-a49a3c6aaa31e3a59c0fa2fec87f82764e6c2bc2.zip |
cleanup
svn-id: r33135
-rw-r--r-- | engines/scumm/imuse_digi/dimuse_sndmgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp index 1511b9aefc..b18b0ba70f 100644 --- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -102,10 +102,10 @@ void ImuseDigiSndMgr::prepareSoundFromRMAP(Common::File *file, SoundDesc *sound, int32 version = file->readUint32BE(); if (version != 3) { 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."); + 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 - error("ImuseDigiSndMgr::prepareSoundFromRMAP: Wrong version number, expected 3, but it's: %d.", version); + error("ImuseDigiSndMgr::prepareSoundFromRMAP: Wrong version number, expected 3, but it's: %d", version); } sound->bits = file->readUint32BE(); sound->freq = file->readUint32BE(); |