aboutsummaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorEugene Sandulenko2017-08-11 21:40:11 +0200
committerEugene Sandulenko2017-08-11 21:40:11 +0200
commitc48cb7af7caea4cbe4867bbb9f7e6c2f4d087bc2 (patch)
tree34a57e58c24f504289f7d3102ee9ac7a2efe4589 /image
parentfcad0fe307539b98518c380d1e052b3a0a134498 (diff)
downloadscummvm-rg350-c48cb7af7caea4cbe4867bbb9f7e6c2f4d087bc2.tar.gz
scummvm-rg350-c48cb7af7caea4cbe4867bbb9f7e6c2f4d087bc2.tar.bz2
scummvm-rg350-c48cb7af7caea4cbe4867bbb9f7e6c2f4d087bc2.zip
JANITORIAL: Add fall through statement
Diffstat (limited to 'image')
-rw-r--r--image/codecs/rpza.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/image/codecs/rpza.cpp b/image/codecs/rpza.cpp
index db0d512f45..411ddd25ca 100644
--- a/image/codecs/rpza.cpp
+++ b/image/codecs/rpza.cpp
@@ -270,6 +270,7 @@ static inline void decodeFrameTmpl(Common::SeekableReadStream &stream, PixelInt
// Fill blocks with 4 colors
case 0xc0:
colorA = stream.readUint16BE();
+ // fall through
case 0x20:
colorB = stream.readUint16BE();