From fab1894f21ac34762a2fcff19b68971df88bbe15 Mon Sep 17 00:00:00 2001 From: David Fioramonti Date: Fri, 15 Jun 2018 05:20:18 -0700 Subject: SCI32: Only enable larry scaler for LSL7 Fixes Trac#10568. --- engines/sci/graphics/celobj32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci') 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* -- cgit v1.2.3