Fixed compiler warning that I introduced earlier.

svn-id: r9974
This commit is contained in:
Torbjörn Andersson 2003-09-02 16:51:51 +00:00
parent 124a84033f
commit 4b49daf3ff

View File

@ -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();