diff options
| author | Jonathan Gray | 2003-03-17 13:04:54 +0000 |
|---|---|---|
| committer | Jonathan Gray | 2003-03-17 13:04:54 +0000 |
| commit | b50b353bcfdb52741afc1f1b77788d64e71efd5a (patch) | |
| tree | 625f23e6589bad2046a1416f9d1f9b787e74a8cb | |
| parent | 85c9a9c39d430cc305264b2962eb9717ba5581a6 (diff) | |
| download | scummvm-rg350-b50b353bcfdb52741afc1f1b77788d64e71efd5a.tar.gz scummvm-rg350-b50b353bcfdb52741afc1f1b77788d64e71efd5a.tar.bz2 scummvm-rg350-b50b353bcfdb52741afc1f1b77788d64e71efd5a.zip | |
init member vars in right order
svn-id: r6822
| -rw-r--r-- | scumm/smush/smush_mixer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/smush/smush_mixer.cpp b/scumm/smush/smush_mixer.cpp index c7ed4708b6..b674430f99 100644 --- a/scumm/smush/smush_mixer.cpp +++ b/scumm/smush/smush_mixer.cpp @@ -30,8 +30,8 @@ SmushMixer::SmushMixer(SoundMixer *m) : _mixer(m), - _soundFrequency(22050), - _nextIndex(_mixer->_beginSlots) { + _nextIndex(_mixer->_beginSlots), + _soundFrequency(22050) { for(int32 i = _mixer->_beginSlots; i < SoundMixer::NUM_CHANNELS; i++) { _channels[i].id = -1; _channels[i].chan = NULL; |
