diff options
-rw-r--r-- | engines/sherlock/image_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/image_file.cpp b/engines/sherlock/image_file.cpp index 9981808fa6..0d60be474d 100644 --- a/engines/sherlock/image_file.cpp +++ b/engines/sherlock/image_file.cpp @@ -289,7 +289,7 @@ void ImageFile3DO::load(Common::SeekableReadStream &stream, bool animImages) { inline uint16 ImageFile3DO::convertPixel(uint16 pixel3DO) { byte red = (pixel3DO >> 10) & 0x1F; byte green = (pixel3DO >> 5) & 0x1F; - byte blue = pixel3DO & 0x1F;; + byte blue = pixel3DO & 0x1F; return ((red << 11) | (green << 6) | (blue)); } |