diff -r 41ec95418e84 -r 89a9d945b97d src/blitter/32bpp_anim.cpp --- a/src/blitter/32bpp_anim.cpp Wed Jun 18 16:48:58 2008 +0000 +++ b/src/blitter/32bpp_anim.cpp Wed Jun 18 20:20:12 2008 +0000 @@ -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 */