From 0084728167da5a52be2c0f0ede7c1eaf36a7b435 Mon Sep 17 00:00:00 2001 From: lotodore Date: Sun, 2 Sep 2012 10:08:39 +0200 Subject: [PATCH] Fixing compiler warning. --- src/gui/qt/sound/sdlplayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/qt/sound/sdlplayer.cpp b/src/gui/qt/sound/sdlplayer.cpp index b758c4f0..26b79549 100644 --- a/src/gui/qt/sound/sdlplayer.cpp +++ b/src/gui/qt/sound/sdlplayer.cpp @@ -29,7 +29,7 @@ using namespace std; SDLPlayer::SDLPlayer(ConfigFile *c) #ifndef ANDROID -: soundData(NULL), currentChannel(0) , audioEnabled(0), myConfig(c), sound(NULL) +: sound(NULL), soundData(NULL), currentChannel(0) , audioEnabled(0), myConfig(c) #endif { myAppDataPath = QString::fromUtf8(myConfig->readConfigString("AppDataDir").c_str());