stole formatting for constructors from existing code

svn-id: r42981
This commit is contained in:
Norbert Lange 2009-08-01 23:14:28 +00:00
parent a28281072d
commit 59395eb6b6
2 changed files with 18 additions and 13 deletions

View file

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