From 231586d924c03eeb8b9fb825cc87e5dd56aa0500 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Sun, 30 Jun 2013 18:59:38 +0200 Subject: VIDEO: Add hypothetical 32bpp support --- video/codecs/indeo3.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'video') diff --git a/video/codecs/indeo3.cpp b/video/codecs/indeo3.cpp index 7bf7fc8235..65fb6dac62 100644 --- a/video/codecs/indeo3.cpp +++ b/video/codecs/indeo3.cpp @@ -322,6 +322,8 @@ const Graphics::Surface *Indeo3Decoder::decodeImage(Common::SeekableReadStream * *((uint8 *)rowDest) = (uint8)color; else if (_surface->format.bytesPerPixel == 2) *((uint16 *)rowDest) = (uint16)color; + else if (_surface->format.bytesPerPixel == 4) + *((uint32 *)rowDest) = (uint32)color; } } -- cgit v1.2.3