AUDIO: Remove default makeADPCMStream rate/channels values

This commit is contained in:
Matthew Hoops 2013-04-20 14:54:41 -04:00
parent f1c3869669
commit c38beb0ced

View File

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