mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
Ooops
svn-id: r17296
This commit is contained in:
parent
644bced723
commit
b5eb59dff1
@ -1249,7 +1249,7 @@ byte AkosRenderer::codec32(int xmoveCur, int ymoveCur) {
|
||||
dst.bottom -= diff;
|
||||
}
|
||||
|
||||
_vm->markRectAsDirty(kMainVirtScreen, dst);
|
||||
markRectAsDirty(dst);
|
||||
|
||||
if (_draw_top > dst.top)
|
||||
_draw_top = dst.top;
|
||||
|
@ -231,6 +231,8 @@ void Wiz::copyAuxImage(uint8 *dst1, uint8 *dst2, const uint8 *src, int dstw, int
|
||||
}
|
||||
|
||||
static bool calcClipRects(int dst_w, int dst_h, int src_x, int src_y, int src_w, int src_h, const Common::Rect *rect, Common::Rect &srcRect, Common::Rect &dstRect) {
|
||||
srcRect = Common::Rect(0, 0, src_w, src_h);
|
||||
dstRect = Common::Rect(src_x, src_y, src_x + src_w, src_y + src_h);
|
||||
Common::Rect r3;
|
||||
int diff;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user