aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/adpcm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/adpcm.cpp b/sound/adpcm.cpp
index 1140089910..3fb6d4d87e 100644
--- a/sound/adpcm.cpp
+++ b/sound/adpcm.cpp
@@ -501,6 +501,7 @@ int16 ADPCMInputStream::decodeTinsel(int16 code, double eVal) {
return (int16) CLIP<double>(sample, -32768.0, 32767.0);
}
+// TODO: Add optional support for sound looping
AudioStream *makeADPCMStream(Common::SeekableReadStream *stream, bool disposeAfterUse, uint32 size, typesADPCM type, int rate, int channels, uint32 blockAlign) {
return new ADPCMInputStream(stream, disposeAfterUse, size, type, rate, channels, blockAlign);
}