aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}