Skip to content

Commit

Permalink
SCI32: Only enable larry scaler for LSL7
Browse files Browse the repository at this point in the history
Fixes Trac#10568.
  • Loading branch information
dafioram authored and rsn8887 committed Jun 15, 2018
1 parent e5103a3 commit fab1894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sci/graphics/celobj32.cpp
Expand Up @@ -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*
Expand Down

0 comments on commit fab1894

Please sign in to comment.