diff options
author | Jussi Pitkanen | 2011-04-12 18:40:43 +0300 |
---|---|---|
committer | Jussi Pitkanen | 2011-04-12 18:40:43 +0300 |
commit | 40b0d468e3112518d5a83d2360c978e72b92f01c (patch) | |
tree | 58cacc918cfedaf66e5f65f23475cec51880bec5 | |
parent | 40394431dc57d0852e4c3ad618538f242f263edc (diff) | |
download | scummvm-rg350-40b0d468e3112518d5a83d2360c978e72b92f01c.tar.gz scummvm-rg350-40b0d468e3112518d5a83d2360c978e72b92f01c.tar.bz2 scummvm-rg350-40b0d468e3112518d5a83d2360c978e72b92f01c.zip |
AGI: More formatting changes...
-rw-r--r-- | engines/agi/sound_2gs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agi/sound_2gs.cpp b/engines/agi/sound_2gs.cpp index f725b273d4..fd7b9b0931 100644 --- a/engines/agi/sound_2gs.cpp +++ b/engines/agi/sound_2gs.cpp @@ -43,8 +43,8 @@ SoundGen2GS::SoundGen2GS(AgiEngine *vm, Audio::Mixer *pMixer) : SoundGen(vm, pMi // here is to first generate audio for a 1/60th of a second and then // advance the MIDI player by one tick. Thus, make the output buffer // to be a 1/60th of a second in length. - _outSize = _sampleRate/60; - _out = new int16[2*_outSize]; // stereo + _outSize = _sampleRate / 60; + _out = new int16[2 * _outSize]; // stereo // Initialize player variables _nextGen = 0; |