diff options
author | Torbjörn Andersson | 2003-09-02 16:51:51 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-09-02 16:51:51 +0000 |
commit | 4b49daf3fff4ccad0012b569905be87f94ebefc8 (patch) | |
tree | 1f2aa50eecc26ced0e904aede4a947983d268c22 | |
parent | 124a84033f302b21751fc3cf8c5fea83acdd05fb (diff) | |
download | scummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.tar.gz scummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.tar.bz2 scummvm-rg350-4b49daf3fff4ccad0012b569905be87f94ebefc8.zip |
Fixed compiler warning that I introduced earlier.
svn-id: r9974
-rw-r--r-- | sound/mixer.cpp | 2 |
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(); |