aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTorbjörn Andersson2003-09-02 16:51:51 +0000
committerTorbjörn Andersson2003-09-02 16:51:51 +0000
commit4b49daf3fff4ccad0012b569905be87f94ebefc8 (patch)
tree1f2aa50eecc26ced0e904aede4a947983d268c22 /sound
parent124a84033f302b21751fc3cf8c5fea83acdd05fb (diff)
downloadscummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.tar.gz
scummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.tar.bz2
scummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.zip
Fixed compiler warning that I introduced earlier.
svn-id: r9974
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index b5444937ca..557d9d37ce 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -52,7 +52,7 @@ public:
int _id;
Channel(SoundMixer *mixer, PlayingSoundHandle *handle)
- : _mixer(mixer), _handle(handle), _converter(0), _input(0), _id(-1), _paused(false) {
+ : _mixer(mixer), _handle(handle), _converter(0), _input(0), _paused(false), _id(-1) {
assert(mixer);
}
virtual ~Channel();