diff options
Diffstat (limited to 'scumm/wiz_he.cpp')
-rw-r--r-- | scumm/wiz_he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/wiz_he.cpp b/scumm/wiz_he.cpp index 947acd68ae..d0e97ef515 100644 --- a/scumm/wiz_he.cpp +++ b/scumm/wiz_he.cpp @@ -1125,8 +1125,8 @@ struct PolygonDrawData { memset(mat, 0, sizeof(mat)); pa = new PolygonArea[n]; for (int i = 0; i < n; ++i) { - pa[i].xmin = 12345; - pa[i].xmax = -12345; + pa[i].xmin = 0x7FFFFFFF; + pa[i].xmax = 0x80000000; } ra = new ResultArea[n]; rAreasNum = 0; |