aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sci.cpp6
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))