diff options
author | Martin Kiewitz | 2010-01-28 21:12:39 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-01-28 21:12:39 +0000 |
commit | e85e0458512547969ebfbf211aa49b0b75b69223 (patch) | |
tree | 8545e9e2dd94b7b7a33eddb1491112dcbbee1c1a | |
parent | a83fca1430c15dcbe29a897fac55d9c48aa93eb1 (diff) | |
download | scummvm-rg350-e85e0458512547969ebfbf211aa49b0b75b69223.tar.gz scummvm-rg350-e85e0458512547969ebfbf211aa49b0b75b69223.tar.bz2 scummvm-rg350-e85e0458512547969ebfbf211aa49b0b75b69223.zip |
SCI: removed obsolete SCI2 upscaledHires
svn-id: r47654
-rw-r--r-- | engines/sci/sci.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index d6c2c0bf46..470bad4ea4 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -113,11 +113,7 @@ Common::Error SciEngine::run() { } // Scale the screen, if needed - bool upscaledHires = (!strcmp(getGameID(), "kq6") -#ifdef ENABLE_SCI32 - || getSciVersion() == SCI_VERSION_2 -#endif - ) && getPlatform() == Common::kPlatformWindows; + bool upscaledHires = (!strcmp(getGameID(), "kq6")) && getPlatform() == Common::kPlatformWindows; // Japanese versions of games use hi-res font on upscaled version of the game if ((getLanguage() == Common::JA_JPN) && (getSciVersion() <= SCI_VERSION_1_1)) |