diff options
author | Martin Kiewitz | 2010-08-03 15:04:56 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-08-03 15:04:56 +0000 |
commit | 65e215628d26397ed23ef53db46fb2b8a5203eb3 (patch) | |
tree | c16bb0093883c412e0360fe04ebf416e26b438f7 /engines/sci | |
parent | 44f12117f2f3d842f455d3bea1554904199b73e1 (diff) | |
download | scummvm-rg350-65e215628d26397ed23ef53db46fb2b8a5203eb3.tar.gz scummvm-rg350-65e215628d26397ed23ef53db46fb2b8a5203eb3.tar.bz2 scummvm-rg350-65e215628d26397ed23ef53db46fb2b8a5203eb3.zip |
SCI: dont clip plane during frameout.cpp
disables scrolling capability
(regression of r51615)
svn-id: r51697
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index 21e3c59628..fd559917ca 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -227,7 +227,6 @@ void GfxFrameout::kernelFrameout() { planeRect.left = (planeRect.left * screenRect.width()) / scriptsRunningWidth; planeRect.bottom = (planeRect.bottom * screenRect.height()) / scriptsRunningHeight; planeRect.right = (planeRect.right * screenRect.width()) / scriptsRunningWidth; - planeRect.clip(screenRect); // we need to do this, at least in gk1 on cemetary we get bottom right -> 201, 321 int16 planeOffsetX = 0; |