diff options
Diffstat (limited to 'video/dxa_decoder.cpp')
-rw-r--r-- | video/dxa_decoder.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/video/dxa_decoder.cpp b/video/dxa_decoder.cpp index b61f842341..97d13b05f3 100644 --- a/video/dxa_decoder.cpp +++ b/video/dxa_decoder.cpp @@ -381,6 +381,7 @@ void DXADecoder::DXAVideoTrack::decode13(int size) { switch (subMask & 0xC0) { // 00: skip case 0x00: + default: break; // 01: solid color case 0x40: { @@ -533,6 +534,8 @@ const Graphics::Surface *DXADecoder::DXAVideoTrack::decodeNextFrame() { case S_NONE: _surface->setPixels(_frameBuffer1); break; + default: + break; } // Copy in the relevant info to the Surface |