diff options
author | David Fioramonti | 2018-06-15 05:20:18 -0700 |
---|---|---|
committer | rsn8887 | 2018-06-15 11:39:28 -0500 |
commit | fab1894f21ac34762a2fcff19b68971df88bbe15 (patch) | |
tree | 4cec56be85a83aa7d70038866c23d08a939eda0f /engines/sci | |
parent | e5103a3e8b73c9335197cbe99279b3b53c336c06 (diff) | |
download | scummvm-rg350-fab1894f21ac34762a2fcff19b68971df88bbe15.tar.gz scummvm-rg350-fab1894f21ac34762a2fcff19b68971df88bbe15.tar.bz2 scummvm-rg350-fab1894f21ac34762a2fcff19b68971df88bbe15.zip |
SCI32: Only enable larry scaler for LSL7
Fixes Trac#10568.
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/celobj32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/celobj32.cpp b/engines/sci/graphics/celobj32.cpp index f11c75ab2b..dc2022433e 100644 --- a/engines/sci/graphics/celobj32.cpp +++ b/engines/sci/graphics/celobj32.cpp @@ -202,7 +202,7 @@ struct SCALER_Scale { const CelScalerTable &table = CelObj::_scaler->getScalerTable(scaleX, scaleY); - const bool useLarryScale = ConfMan.getBool("enable_larryscale"); + const bool useLarryScale = (g_sci->getGameId() == GID_LSL7) && ConfMan.getBool("enable_larryscale"); if (useLarryScale) { // LarryScale is an alternative, high-quality cel scaler implemented // for ScummVM. Due to the nature of smooth upscaling, it does *not* |