From c10691faffc9d08b6342b18c3be6f27e659fb43e Mon Sep 17 00:00:00 2001 From: glx Date: Fri, 15 Aug 2008 22:06:58 +0000 Subject: (svn r14080) -Fix (r14052): assert triggered when drawing chat window with 32bpp-anim blitter (backup buffer was too small) --- src/blitter/base.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/blitter/base.hpp') diff --git a/src/blitter/base.hpp b/src/blitter/base.hpp index 6a4e4196a..c05f21a5d 100644 --- a/src/blitter/base.hpp +++ b/src/blitter/base.hpp @@ -183,10 +183,15 @@ public: virtual Blitter::PaletteAnimation UsePaletteAnimation() = 0; /** - * Get the naem of the blitter, the same as the Factory-instance returns. + * Get the name of the blitter, the same as the Factory-instance returns. */ virtual const char *GetName() = 0; + /** + * Get how many bytes are needed to store a pixel. + */ + virtual int GetBytesPerPixel() = 0; + virtual ~Blitter() { } }; -- cgit v1.2.3-54-g00ecf