diff -r d6f39d44664b -r 0c0636370335 src/blitter/32bpp_base.cpp --- a/src/blitter/32bpp_base.cpp Tue Jun 19 12:19:31 2007 +0000 +++ b/src/blitter/32bpp_base.cpp Tue Jun 19 15:04:08 2007 +0000 @@ -177,3 +177,13 @@ { return width * height * sizeof(uint32); } + +void Blitter_32bppBase::PaletteAnimate(uint start, uint count) +{ + /* By default, 32bpp doesn't have palette animation */ +} + +Blitter::PaletteAnimation Blitter_32bppBase::UsePaletteAnimation() +{ + return Blitter::PALETTE_ANIMATION_NONE; +}