aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2015-04-12 20:13:47 -0400
committerMatthew Hoops2015-04-12 20:18:31 -0400
commitd521ece7cb46ade23cdb2d342a0537716dd11400 (patch)
tree2c7cd28778357dd37ce266ee3a2c87428cdac273
parent49885d686edd522442b035986a4994c20fcc6cb2 (diff)
downloadscummvm-rg350-d521ece7cb46ade23cdb2d342a0537716dd11400.tar.gz
scummvm-rg350-d521ece7cb46ade23cdb2d342a0537716dd11400.tar.bz2
scummvm-rg350-d521ece7cb46ade23cdb2d342a0537716dd11400.zip
MOHAWK: Set dithering on any original Myst video
Fixes display of the library "swirl" video
-rw-r--r--engines/mohawk/video.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/mohawk/video.cpp b/engines/mohawk/video.cpp
index ca38f22b7a..3f27e4a1a4 100644
--- a/engines/mohawk/video.cpp
+++ b/engines/mohawk/video.cpp
@@ -572,10 +572,6 @@ void VideoManager::checkEnableDither(VideoEntry &entry) {
if (!_enableDither)
return;
- // Ignore any video which is already 8bpp
- if (entry->getPixelFormat().bytesPerPixel == 1)
- return;
-
// Set the palette
byte palette[256 * 3];
g_system->getPaletteManager()->grabPalette(palette, 0, 256);