No longer used by HE games.

svn-id: r19940
This commit is contained in:
Travis Howell 2006-01-07 23:53:38 +00:00
parent 05a469074c
commit 202b739c36
2 changed files with 0 additions and 11 deletions

View file

@ -696,16 +696,6 @@ bool Sound::isMouthSyncOff(uint pos) {
return val;
}
int Sound::getSoundElapsedTime(int sound) const {
if (sound >= 10000) {
int channel = sound - 10000;
return _vm->_mixer->getSoundElapsedTime(_heSoundChannels[channel]);
} else {
return _vm->_mixer->getSoundElapsedTimeOfSoundID(sound);
}
}
int Sound::isSoundRunning(int sound) const {
#ifndef DISABLE_SCUMM_7_8
if (_vm->_imuseDigital)