From 6782d3efac9dd69cc33f245472b670adc39ce04e Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Mon, 1 Jun 2009 23:25:10 +0000 Subject: Change LoLEngine::delay to be conform with KyraEngine_v1::delay. (remove special iUpdate parameter, just call updateInput, when "doUpdate" is set to false) svn-id: r41114 --- engines/kyra/sound_lol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/kyra/sound_lol.cpp') diff --git a/engines/kyra/sound_lol.cpp b/engines/kyra/sound_lol.cpp index a14df2090a..d0e34a0be6 100644 --- a/engines/kyra/sound_lol.cpp +++ b/engines/kyra/sound_lol.cpp @@ -90,10 +90,10 @@ bool LoLEngine::snd_playCharacterSpeech(int id, int8 speaker, int) { return false; while (_sound->voiceIsPlaying(&_speechHandle)) - delay(_tickLength, true, false); + delay(_tickLength, true); while (_sound->allVoiceChannelsPlaying()) - delay(_tickLength, false, true); + delay(_tickLength); for (Common::List::iterator i = _speechList.begin(); i != _speechList.end(); ++i) delete *i; -- cgit v1.2.3