aboutsummaryrefslogtreecommitdiff
path: root/audio/decoders/adpcm.h
diff options
context:
space:
mode:
authorMatthew Hoops2013-04-20 14:54:41 -0400
committerMatthew Hoops2013-04-20 14:54:41 -0400
commitc38beb0cedbad38773ffcdd75a382efe1633ed0b (patch)
tree732b0e086509cd58985554389201d6068dafa84a /audio/decoders/adpcm.h
parentf1c38696699240136a6340a6a6be4d2647da8676 (diff)
downloadscummvm-rg350-c38beb0cedbad38773ffcdd75a382efe1633ed0b.tar.gz
scummvm-rg350-c38beb0cedbad38773ffcdd75a382efe1633ed0b.tar.bz2
scummvm-rg350-c38beb0cedbad38773ffcdd75a382efe1633ed0b.zip
AUDIO: Remove default makeADPCMStream rate/channels values
Diffstat (limited to 'audio/decoders/adpcm.h')
-rw-r--r--audio/decoders/adpcm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/decoders/adpcm.h b/audio/decoders/adpcm.h
index ac8d529917..288026203b 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