Un-fix scaled box redraw, as it cause more problems than it solves

This commit is contained in:
Chris Young 2013-02-03 19:10:30 +00:00
parent ccaeced4bf
commit 34f1e427f9

View File

@ -3689,8 +3689,8 @@ void ami_do_redraw_tiled(struct gui_window_2 *gwin, bool busy,
BLITA_SrcY, 0,
BLITA_DestType, BLITT_RASTPORT,
BLITA_Dest, gwin->win->RPort,
BLITA_DestX, bbox->Left + (int)((x * gwin->bw->scale) - sx),
BLITA_DestY, bbox->Top + (int)((y * gwin->bw->scale) - sy),
BLITA_DestX, bbox->Left + (int)((x - sx) * gwin->bw->scale),
BLITA_DestY, bbox->Top + (int)((y - sy) * gwin->bw->scale),
BLITA_Width, (int)(clip.x1),
BLITA_Height, (int)(clip.y1),
TAG_DONE);