aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-11-07 10:38:45 +0000
committerTorbjörn Andersson2003-11-07 10:38:45 +0000
commite01ab4599d0bcd96c506a75a3da6938e82ac7171 (patch)
tree1bb6ff95f88521400b9d1b7c0e77ecd428f600e9 /queen
parent4c833ba23ee6ab9d75cdbd6edff585e23818b360 (diff)
downloadscummvm-rg350-e01ab4599d0bcd96c506a75a3da6938e82ac7171.tar.gz
scummvm-rg350-e01ab4599d0bcd96c506a75a3da6938e82ac7171.tar.bz2
scummvm-rg350-e01ab4599d0bcd96c506a75a3da6938e82ac7171.zip
Fixed warning. (I've only seen these warnings when compiling under MinGW,
and to be honest I never understood why the compiler wars for it.) svn-id: r11184
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 b756570b13..99e850501e 100644
--- a/queen/sound.cpp
+++ b/queen/sound.cpp
@@ -95,7 +95,7 @@ static ov_callbacks g_File_wrap = {
#endif
Sound::Sound(SoundMixer *mixer, Input *input, Resource *resource) :
- _mixer(mixer), _input(input), _resource(resource), _sfxHandle(0), _lastOverride(0), _currentSong(0) {
+ _mixer(mixer), _input(input), _resource(resource), _lastOverride(0), _currentSong(0), _sfxHandle(0) {
}
Sound::~Sound() {