summaryrefslogtreecommitdiff
path: root/src/blitter/32bpp_anim.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/blitter/32bpp_anim.cpp')
-rw-r--r--src/blitter/32bpp_anim.cpp3
1 files changed, 1 insertions, 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 */