From c38beb0cedbad38773ffcdd75a382efe1633ed0b Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sat, 20 Apr 2013 14:54:41 -0400 Subject: [PATCH] AUDIO: Remove default makeADPCMStream rate/channels values --- audio/decoders/adpcm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/decoders/adpcm.h b/audio/decoders/adpcm.h index ac8d529917f..288026203b4 100644 --- a/audio/decoders/adpcm.h +++ b/audio/decoders/adpcm.h @@ -77,8 +77,8 @@ RewindableAudioStream *makeADPCMStream( Common::SeekableReadStream *stream, DisposeAfterUse::Flag disposeAfterUse, uint32 size, typesADPCM type, - int rate = 22050, - int channels = 2, + int rate, + int channels, uint32 blockAlign = 0); } // End of namespace Audio