SCI: added todo for upscaled hires on sci2

svn-id: r47655
This commit is contained in:
Martin Kiewitz 2010-01-28 21:24:28 +00:00
parent e85e045851
commit 8653f62b15

View file

@ -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