aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-28 21:24:28 +0000
committerMartin Kiewitz2010-01-28 21:24:28 +0000
commit8653f62b15c53ff46d1cf4b40ac2579ce269775d (patch)
tree15ae19a59fc3693890e83885e26edf8ecc4d75b1
parente85e0458512547969ebfbf211aa49b0b75b69223 (diff)
downloadscummvm-rg350-8653f62b15c53ff46d1cf4b40ac2579ce269775d.tar.gz
scummvm-rg350-8653f62b15c53ff46d1cf4b40ac2579ce269775d.tar.bz2
scummvm-rg350-8653f62b15c53ff46d1cf4b40ac2579ce269775d.zip
SCI: added todo for upscaled hires on sci2
svn-id: r47655
-rw-r--r--engines/sci/sci.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index 470bad4ea4..8e0f990c42 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -125,7 +125,8 @@ Common::Error SciEngine::run() {
bool isHires = _resMan->detectHires();
#ifdef ENABLE_SCI32
- // If SCI2.1+ games are lowres (e.g. qfg4/cd), switch to upscaled hires mode
+ // If SCI2 games are lowres (e.g. gk, qfg4/cd), switch to upscaled hires mode
+ // TODO: change SCI_VERSION_2_1 to SCI_VERSION_2, currently gk doesnt like us using upscaled hires mode
if ((!isHires) && (getSciVersion() >= SCI_VERSION_2_1))
upscaledHires = true;
#endif