mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
SCI: Fix scaling in the back room of the bookstore in GK1
This commit is contained in:
parent
53f38aeff1
commit
41e02baff1
@ -747,7 +747,8 @@ void GfxFrameout::kernelFrameout() {
|
||||
// TODO: We can only process symmetrical scaling for now (i.e. same value for scaleX/scaleY)
|
||||
if ((itemEntry->scaleSignal & kScaleSignalDoScaling32) &&
|
||||
!(itemEntry->scaleSignal & kScaleSignalDisableGlobalScaling32) &&
|
||||
(itemEntry->scaleX == itemEntry->scaleY))
|
||||
(itemEntry->scaleX == itemEntry->scaleY) &&
|
||||
itemEntry->scaleX != 128)
|
||||
applyGlobalScaling(itemEntry, it->planeRect, view->getHeight(itemEntry->loopNo, itemEntry->celNo));
|
||||
|
||||
if ((itemEntry->scaleX == 128) && (itemEntry->scaleY == 128))
|
||||
|
Loading…
Reference in New Issue
Block a user