aboutsummaryrefslogtreecommitdiff
path: root/sound/adpcm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound/adpcm.cpp')
-rw-r--r--sound/adpcm.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/adpcm.cpp b/sound/adpcm.cpp
index 2b447d6b0f..9522e588d0 100644
--- a/sound/adpcm.cpp
+++ b/sound/adpcm.cpp
@@ -108,16 +108,13 @@ int ADPCMInputStream::readBuffer(int16 *buffer, const int numSamples) {
switch (_type) {
case kADPCMOki:
return readBufferOKI(buffer, numSamples);
- break;
case kADPCMMSIma:
if (_channels == 1)
return readBufferMSIMA1(buffer, numSamples);
else
return readBufferMSIMA2(buffer, numSamples);
- break;
case kADPCMMS:
return readBufferMS(_channels, buffer, numSamples);
- break;
default:
error("Unsupported ADPCM encoding");
break;