diff options
| author | Max Horn | 2003-12-23 00:10:08 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-12-23 00:10:08 +0000 | 
| commit | 47d744428b79a7f88710c35cbf4e74c2040b6657 (patch) | |
| tree | 4a9a8574fb4265ef7d934e3b32982c377bcd93ee /scumm | |
| parent | 13d057101893c34911701e6dfd538c7ca4f15dc4 (diff) | |
| download | scummvm-rg350-47d744428b79a7f88710c35cbf4e74c2040b6657.tar.gz scummvm-rg350-47d744428b79a7f88710c35cbf4e74c2040b6657.tar.bz2 scummvm-rg350-47d744428b79a7f88710c35cbf4e74c2040b6657.zip  | |
must use pauseHandle, not pauseID
svn-id: r11864
Diffstat (limited to 'scumm')
| -rw-r--r-- | scumm/imuse_digi.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse_digi.cpp b/scumm/imuse_digi.cpp index 91cbab97c5..9b55b1cb8e 100644 --- a/scumm/imuse_digi.cpp +++ b/scumm/imuse_digi.cpp @@ -993,7 +993,7 @@ void IMuseDigital::stopAllSounds() {  void IMuseDigital::pause(bool p) {  	for (int l = 0; l < MAX_DIGITAL_CHANNELS; l++) {  		if (_channel[l].used) { -			_scumm->_mixer->pauseID(_channel[l].handle, p); +			_scumm->_mixer->pauseHandle(_channel[l].handle, p);  		}  	}  	_pause = p;  | 
