diff options
author | Travis Howell | 2006-01-30 22:06:53 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-30 22:06:53 +0000 |
commit | 44383a7ab70cfc41b6e67c6281b74413760fdb97 (patch) | |
tree | e16f92e3665dff9cbe19140687d33ad388adcf83 /scumm | |
parent | a199c1ef146eb1b5b7480604f3d6ef4c07df55c8 (diff) | |
download | scummvm-rg350-44383a7ab70cfc41b6e67c6281b74413760fdb97.tar.gz scummvm-rg350-44383a7ab70cfc41b6e67c6281b74413760fdb97.tar.bz2 scummvm-rg350-44383a7ab70cfc41b6e67c6281b74413760fdb97.zip |
Revert back to match original version.
Change caused glitches in credits of pajama3.
svn-id: r20320
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/wiz_he.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index d0e97ef515..f58123a305 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1185,9 +1185,8 @@ void Wiz::drawWizComplexPolygon(int resNum, int state, int po_x, int po_y, int s 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].y = pts[1].y = -(h / 2); + pts[0].x = pts[0].y = pts[1].y = pts[3].x = -(w / 2); pts[2].y = pts[3].y = h / 2 - 1; // scale |