mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
Use correct order, to prevent mingw warnings.
svn-id: r12865
This commit is contained in:
parent
1e18364e5c
commit
5f4641d8a1
@ -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),
|
||||
|
@ -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),
|
||||
|
Loading…
x
Reference in New Issue
Block a user