diff options
| author | Travis Howell | 2004-02-14 01:39:09 +0000 |
|---|---|---|
| committer | Travis Howell | 2004-02-14 01:39:09 +0000 |
| commit | 5f4641d8a1a299ecba52897f0f576cbfc7a0316a (patch) | |
| tree | bb9dd792681e44423a8a375ec69d366d233d9284 | |
| parent | 1e18364e5c34f578eaea359e709160d708f79b52 (diff) | |
| download | scummvm-rg350-5f4641d8a1a299ecba52897f0f576cbfc7a0316a.tar.gz scummvm-rg350-5f4641d8a1a299ecba52897f0f576cbfc7a0316a.tar.bz2 scummvm-rg350-5f4641d8a1a299ecba52897f0f576cbfc7a0316a.zip | |
Use correct order, to prevent mingw warnings.
svn-id: r12865
| -rw-r--r-- | scumm/imuse_player.cpp | 2 | ||||
| -rw-r--r-- | scumm/smush/saud_channel.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/imuse_player.cpp b/scumm/imuse_player.cpp index 484976eeac..c63e42311c 100644 --- a/scumm/imuse_player.cpp +++ b/scumm/imuse_player.cpp @@ -60,6 +60,7 @@ uint16 Player::_active_notes[128]; Player::Player() : _midi(0), _parser(0), + _passThrough(0), _parts(0), _active(false), _scanning(false), @@ -76,7 +77,6 @@ Player::Player() : _loop_counter(0), _loop_to_tick(0), _loop_from_tick(0), - _passThrough(0), _speed(128), _isMT32(false), _isGM(false), diff --git a/scumm/smush/saud_channel.cpp b/scumm/smush/saud_channel.cpp index 5f90555e18..53ac6c137f 100644 --- a/scumm/smush/saud_channel.cpp +++ b/scumm/smush/saud_channel.cpp @@ -161,9 +161,9 @@ SaudChannel::SaudChannel(int32 track, int32 freq) : _nbframes(0), _dataSize(-1), _frequency(freq), - _index(0), _inData(false), _markReached(false), + _index(0), _tbuffer(0), _tbufferSize(0), _sbuffer(0), |
