diff options
author | Joost Peters | 2003-11-08 11:00:36 +0000 |
---|---|---|
committer | Joost Peters | 2003-11-08 11:00:36 +0000 |
commit | aa655b95e4d22036d30728cc4f16e91a79bdbc90 (patch) | |
tree | 88f49823fdd46defbf218faf257ea00e52a9aa27 /queen | |
parent | 27bb10900e8053c0c988a256a1313bd1da8d7f2c (diff) | |
download | scummvm-rg350-aa655b95e4d22036d30728cc4f16e91a79bdbc90.tar.gz scummvm-rg350-aa655b95e4d22036d30728cc4f16e91a79bdbc90.tar.bz2 scummvm-rg350-aa655b95e4d22036d30728cc4f16e91a79bdbc90.zip |
Apparantly, this cast is not needed for it to work properly
svn-id: r11202
Diffstat (limited to 'queen')
-rw-r--r-- | queen/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |