diff options
author | Torbjörn Andersson | 2003-11-07 10:38:45 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-11-07 10:38:45 +0000 |
commit | e01ab4599d0bcd96c506a75a3da6938e82ac7171 (patch) | |
tree | 1bb6ff95f88521400b9d1b7c0e77ecd428f600e9 | |
parent | 4c833ba23ee6ab9d75cdbd6edff585e23818b360 (diff) | |
download | scummvm-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
-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 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() { |