diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/sound_2gs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/sound_2gs.cpp b/engines/agi/sound_2gs.cpp index 6d64c29de9..3c8a3dfc8d 100644 --- a/engines/agi/sound_2gs.cpp +++ b/engines/agi/sound_2gs.cpp @@ -135,7 +135,7 @@ void SoundGen2GS::stop() { * Fill output buffer by advancing the generators for a 1/60th of a second. * @return Number of generated samples */ -uint32 SoundGen2GS::generateOutput() { +uint SoundGen2GS::generateOutput() { memset(_out, 0, _outSize * 2 * 2); if (!_playing || _playingSound == -1) |