aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorJoost Peters2003-11-08 11:00:36 +0000
committerJoost Peters2003-11-08 11:00:36 +0000
commitaa655b95e4d22036d30728cc4f16e91a79bdbc90 (patch)
tree88f49823fdd46defbf218faf257ea00e52a9aa27 /queen
parent27bb10900e8053c0c988a256a1313bd1da8d7f2c (diff)
downloadscummvm-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.cpp2
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);
}