aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2003-01-18 14:00:59 +0000
committerPaweł Kołodziejski2003-01-18 14:00:59 +0000
commit050a3fcd12e93331997edca88f2cdb8c863db0f0 (patch)
tree2efc31b7ab8a1c086484ed81e5bd4a000e048c81 /scumm/sound.cpp
parent4c5c59c1985aa82d41b7cbaeb5edf66982ac2b95 (diff)
downloadscummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.tar.gz
scummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.tar.bz2
scummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.zip
fix compilation under VC6
svn-id: r6494
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index d632f60012..618c1651d0 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -973,7 +973,7 @@ void Sound::playBundleMusic(char * song) {
return;
}
- _musicDisk = _scumm->_vars[_scumm->VAR_CURRENTDISK];
+ _musicDisk = (byte)_scumm->_vars[_scumm->VAR_CURRENTDISK];
_outputMixerSize = 88140; // ((22050 * 2 * 2)
} else {
if (_scumm->_bundle->openMusicFile("digmusic.bun", _scumm->getGameDataPath()) == false)