mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
Changed transformation origin computation (the previous code is matching pajama2 disasm, but looks wrong to me).
svn-id: r20316
This commit is contained in:
parent
5465d3206c
commit
ea2c7b7d28
@ -1184,20 +1184,25 @@ void Wiz::drawWizComplexPolygon(int resNum, int state, int po_x, int po_y, int s
|
||||
int32 w, h;
|
||||
getWizImageDim(resNum, state, w, h);
|
||||
|
||||
// set the transformation origin to the center of the image
|
||||
pts[0].x = pts[3].x = -(w / 2);
|
||||
pts[1].x = pts[2].x = w / 2 - 1;
|
||||
pts[0].x = pts[0].y = pts[1].y = pts[3].x = -(w / 2);
|
||||
pts[0].y = pts[1].y = -(h / 2);
|
||||
pts[2].y = pts[3].y = h / 2 - 1;
|
||||
|
||||
// transform points
|
||||
// scale
|
||||
if (scale != 256) {
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
pts[i].x = pts[i].x * scale / 256;
|
||||
pts[i].y = pts[i].y * scale / 256;
|
||||
}
|
||||
}
|
||||
|
||||
// rotate
|
||||
if (angle)
|
||||
polygonRotatePoints(pts, 4, angle);
|
||||
|
||||
// translate
|
||||
for (int i = 0; i < 4; ++i) {
|
||||
pts[i].x += po_x;
|
||||
pts[i].y += po_y;
|
||||
|
Loading…
x
Reference in New Issue
Block a user