[Scummvm-git-logs] scummvm master -> fab1894f21ac34762a2fcff19b68971df88bbe15
rsn8887
rsn8887 at users.noreply.github.com
Fri Jun 15 18:39:32 CEST 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
fab1894f21 SCI32: Only enable larry scaler for LSL7
Commit: fab1894f21ac34762a2fcff19b68971df88bbe15
https://github.com/scummvm/scummvm/commit/fab1894f21ac34762a2fcff19b68971df88bbe15
Author: David Fioramonti (dafioram at gmail.com)
Date: 2018-06-15T11:39:28-05:00
Commit Message:
SCI32: Only enable larry scaler for LSL7
Fixes Trac#10568.
Changed paths:
engines/sci/graphics/celobj32.cpp
diff --git a/engines/sci/graphics/celobj32.cpp b/engines/sci/graphics/celobj32.cpp
index f11c75a..dc20224 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*
More information about the Scummvm-git-logs
mailing list