mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
parent
6ffa6ecccf
commit
0335a37b05
@ -177,8 +177,8 @@ void Screen::drawSurface(Graphics::Surface *sourceSurface, int x, int y, int16 f
|
||||
if (y + clipHeight > clipInfo.clipRect.bottom) {
|
||||
clipHeight = clipInfo.clipRect.bottom - y;
|
||||
}
|
||||
|
||||
source = (byte*)sourceSurface->getBasePtr(startX, startY);
|
||||
|
||||
source = (byte*)sourceSurface->getBasePtr(0, startY);
|
||||
dest = (byte*)clipInfo.destSurface->getBasePtr(x, y);
|
||||
if (_vm->getGameID() != GID_RTZ)
|
||||
maskp = (byte*)_maskDrawCtx.destSurface->getBasePtr(x, y);
|
||||
@ -188,10 +188,10 @@ void Screen::drawSurface(Graphics::Surface *sourceSurface, int x, int y, int16 f
|
||||
|
||||
if (flipX) {
|
||||
linePtrAdd = -1;
|
||||
sourceAdd = sourceSurface->w - 1;
|
||||
sourceAdd = sourceSurface->w - startX - 1;
|
||||
} else {
|
||||
linePtrAdd = 1;
|
||||
sourceAdd = 0;
|
||||
sourceAdd = startX;
|
||||
}
|
||||
|
||||
if (flipY) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user