diff options
author | Bastien Bouclet | 2016-03-05 20:41:10 +0100 |
---|---|---|
committer | Bastien Bouclet | 2016-03-05 20:49:12 +0100 |
commit | 0bc1f8a4e8fe4ca96946a59f140fc7a7ec6d69bc (patch) | |
tree | 54171fd91222a3598c0afe88791f09be497cc838 | |
parent | a5b0e35626f3ceb3fa65ea05a40f8b06f193c51d (diff) | |
download | scummvm-rg350-0bc1f8a4e8fe4ca96946a59f140fc7a7ec6d69bc.tar.gz scummvm-rg350-0bc1f8a4e8fe4ca96946a59f140fc7a7ec6d69bc.tar.bz2 scummvm-rg350-0bc1f8a4e8fe4ca96946a59f140fc7a7ec6d69bc.zip |
MOHAWK: Also enable dithering for the making of Myst
-rw-r--r-- | engines/mohawk/video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/video.cpp b/engines/mohawk/video.cpp index 0008160f5a..eec543235e 100644 --- a/engines/mohawk/video.cpp +++ b/engines/mohawk/video.cpp @@ -146,7 +146,7 @@ VideoHandle::VideoHandle(const VideoHandle &handle) : _ptr(handle._ptr) { VideoManager::VideoManager(MohawkEngine* vm) : _vm(vm) { // Set dithering enabled, if required - _enableDither = _vm->getGameType() == GType_MYST && !(_vm->getFeatures() & GF_ME); + _enableDither = (_vm->getGameType() == GType_MYST || _vm->getGameType() == GType_MAKINGOF) && !(_vm->getFeatures() & GF_ME); } VideoManager::~VideoManager() { |