changeset 9550:5f0643473eb1 draft

(svn r13568) -Fix (r13564): Windows build asserts where I wouldn't expect it to
author smatz <smatz@openttd.org>
date Wed, 18 Jun 2008 20:20:12 +0000
parents cd35cea9d51b
children 8849c20f82c0
files src/blitter/32bpp_anim.cpp
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/blitter/32bpp_anim.cpp
+++ b/src/blitter/32bpp_anim.cpp
@@ -292,7 +292,6 @@
 void Blitter_32bppAnim::PaletteAnimate(uint start, uint count)
 {
 	assert(!_screen_disable_anim);
-	assert(_screen.width == this->anim_buf_width && _screen.height == this->anim_buf_height);
 
 	/* Never repaint the transparency pixel */
 	if (start == 0) {
@@ -314,7 +313,7 @@
 			dst++;
 			anim++;
 		}
-		dst += _screen.pitch - _screen.width;
+		dst += _screen.pitch - this->anim_buf_width;
 	}
 
 	/* Make sure the backend redraws the whole screen */