stole formatting for constructors from existing code
svn-id: r42981
This commit is contained in:
parent
a28281072d
commit
59395eb6b6
2 changed files with 18 additions and 13 deletions
|
@ -32,17 +32,17 @@
|
|||
|
||||
namespace Scumm {
|
||||
|
||||
Player_V4A::Player_V4A(ScummEngine *scumm, Audio::Mixer *mixer) :
|
||||
_vm(scumm),
|
||||
_mixer(mixer),
|
||||
_tfmxMusic(_mixer->getOutputRate(), true),
|
||||
_tfmxSfx(_mixer->getOutputRate(), true),
|
||||
_musicHandle(),
|
||||
_sfxHandle(),
|
||||
_musicId(),
|
||||
_sfxSlots(),
|
||||
_initState(0),
|
||||
_signal(0) {
|
||||
Player_V4A::Player_V4A(ScummEngine *scumm, Audio::Mixer *mixer)
|
||||
: _vm(scumm),
|
||||
_mixer(mixer),
|
||||
_tfmxMusic(_mixer->getOutputRate(), true),
|
||||
_tfmxSfx(_mixer->getOutputRate(), true),
|
||||
_musicHandle(),
|
||||
_sfxHandle(),
|
||||
_musicId(),
|
||||
_sfxSlots(),
|
||||
_initState(0),
|
||||
_signal(0) {
|
||||
|
||||
assert(scumm);
|
||||
assert(mixer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue