diff options
Diffstat (limited to 'video')
-rw-r--r-- | video/bink_decoder.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/video/bink_decoder.cpp b/video/bink_decoder.cpp index 8cbde8c849..7f2bedfbf4 100644 --- a/video/bink_decoder.cpp +++ b/video/bink_decoder.cpp @@ -1111,6 +1111,7 @@ void BinkDecoder::BinkVideoTrack::readDCTCoeffs(VideoFrame &video, int16 *block, case 0: coefList[listPos] = ccoef + 4; modeList[listPos] = 1; + // fall through case 2: if (mode == 2) { coefList[listPos] = 0; @@ -1218,6 +1219,7 @@ void BinkDecoder::BinkVideoTrack::readResidue(VideoFrame &video, int16 *block, i case 0: coefList[listPos] = ccoef + 4; modeList[listPos] = 1; + // fall through case 2: if (mode == 2) { coefList[listPos] = 0; |