From e01ab4599d0bcd96c506a75a3da6938e82ac7171 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 7 Nov 2003 10:38:45 +0000 Subject: 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 --- queen/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- cgit v1.2.3