From aa655b95e4d22036d30728cc4f16e91a79bdbc90 Mon Sep 17 00:00:00 2001 From: Joost Peters Date: Sat, 8 Nov 2003 11:00:36 +0000 Subject: Apparantly, this cast is not needed for it to work properly svn-id: r11202 --- queen/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queen/sound.cpp b/queen/sound.cpp index 99e850501e..4cd38fa26f 100644 --- a/queen/sound.cpp +++ b/queen/sound.cpp @@ -130,7 +130,7 @@ Sound *Sound::giveSound(SoundMixer *mixer, Input *input, Resource *resource, uin } void Sound::waitSfxFinished() { - while((volatile PlayingSoundHandle)_sfxHandle != 0) + while(_sfxHandle != 0) _input->delay(10); } -- cgit v1.2.3