diff options
| author | Paweł Kołodziejski | 2003-01-18 14:00:59 +0000 |
|---|---|---|
| committer | Paweł Kołodziejski | 2003-01-18 14:00:59 +0000 |
| commit | 050a3fcd12e93331997edca88f2cdb8c863db0f0 (patch) | |
| tree | 2efc31b7ab8a1c086484ed81e5bd4a000e048c81 | |
| parent | 4c5c59c1985aa82d41b7cbaeb5edf66982ac2b95 (diff) | |
| download | scummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.tar.gz scummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.tar.bz2 scummvm-rg350-050a3fcd12e93331997edca88f2cdb8c863db0f0.zip | |
fix compilation under VC6
svn-id: r6494
| -rw-r--r-- | scumm/sound.cpp | 2 |
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) |
