From bc12e5453cca334705fe9d280a015e6c58a83dd6 Mon Sep 17 00:00:00 2001 From: smatz Date: Wed, 18 Jun 2008 20:20:12 +0000 Subject: (svn r13568) -Fix (r13564): Windows build asserts where I wouldn't expect it to --- src/blitter/32bpp_anim.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/blitter/32bpp_anim.cpp b/src/blitter/32bpp_anim.cpp index 28994f86e..720a769bb 100644 --- a/src/blitter/32bpp_anim.cpp +++ b/src/blitter/32bpp_anim.cpp @@ -292,7 +292,6 @@ int Blitter_32bppAnim::BufferSize(int width, int height) 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 @@ void Blitter_32bppAnim::PaletteAnimate(uint start, uint count) dst++; anim++; } - dst += _screen.pitch - _screen.width; + dst += _screen.pitch - this->anim_buf_width; } /* Make sure the backend redraws the whole screen */ -- cgit v1.2.3-54-g00ecf