Fix wrong palette being used when switching to animated blitter.

Fixes black sprites and UI elements when switching on full
animations on win32 and OSX.
This commit is contained in:
Jonathan G Rennison
2017-03-07 23:37:06 +00:00
parent 2d473c05b0
commit d14d5731d8

View File

@@ -31,7 +31,9 @@ public:
anim_buf_width(0),
anim_buf_pitch(0),
anim_buf_height(0)
{}
{
this->palette = _cur_palette;
}
~Blitter_32bppAnim();