aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/console.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2014-10-28 01:40:40 +0100
committerMartin Kiewitz2014-10-28 01:40:40 +0100
commitf317e8c8777bdc8482b5e55f3f28873a61eab7da (patch)
tree5a1a0223d566e824c59b5640cc6c55e2c49469a9 /engines/sci/console.cpp
parentda9ffe9dbc0912463c6161186085525bb775c0c1 (diff)
downloadscummvm-rg350-f317e8c8777bdc8482b5e55f3f28873a61eab7da.tar.gz
scummvm-rg350-f317e8c8777bdc8482b5e55f3f28873a61eab7da.tar.bz2
scummvm-rg350-f317e8c8777bdc8482b5e55f3f28873a61eab7da.zip
SCI: implement 8-bit color matching SCI1.1 bug
effectively fixes bug #6455 thanks to wjp and [md5]
Diffstat (limited to 'engines/sci/console.cpp')
-rw-r--r--engines/sci/console.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp
index 565e9752c3..510c8cd9ca 100644
--- a/engines/sci/console.cpp
+++ b/engines/sci/console.cpp
@@ -485,6 +485,7 @@ bool Console::cmdGetVersion(int argc, const char **argv) {
#endif
debugPrintf("View type: %s\n", viewTypeDesc[g_sci->getResMan()->getViewType()]);
debugPrintf("Uses palette merging: %s\n", g_sci->_gfxPalette->isMerging() ? "yes" : "no");
+ debugPrintf("Uses 16 bit color matching: %s\n", g_sci->_gfxPalette->isUsing16bitColorMatch() ? "yes" : "no");
debugPrintf("Resource volume version: %s\n", g_sci->getResMan()->getVolVersionDesc());
debugPrintf("Resource map version: %s\n", g_sci->getResMan()->getMapVersionDesc());
debugPrintf("Contains selector vocabulary (vocab.997): %s\n", hasVocab997 ? "yes" : "no");