(svn r8133) -Fix [FS#535]: "out of sprite memory" warning messages due to incorrect assumption of requested memory for sprites (smatz)
authorDarkvater
Sun, 14 Jan 2007 21:50:56 +0000
changeset 5673 543f471cb12e
parent 5672 86ab5e4289a5
child 5674 abe7d6b7b1d4
(svn r8133) -Fix [FS#535]: "out of sprite memory" warning messages due to incorrect assumption of requested memory for sprites (smatz)
src/viewport.cpp
--- a/src/viewport.cpp	Sun Jan 14 21:32:13 2007 +0000
+++ b/src/viewport.cpp	Sun Jan 14 21:50:56 2007 +0000
@@ -1293,7 +1293,7 @@
 // If we do, the sprite memory will overflow.
 static void ViewportDrawChk(const ViewPort *vp, int left, int top, int right, int bottom)
 {
-	if (((bottom - top) * (right - left) << vp->zoom) > 180000) {
+	if (((bottom - top) * (right - left) << (2 * vp->zoom)) > 180000) {
 		if ((bottom - top) > (right - left)) {
 			int t = (top + bottom) >> 1;
 			ViewportDrawChk(vp, left, top, right, t);