(svn r21782) -Codechange: Move declaration of AllocatorProc from Blitter:: to spritecache.h

This commit is contained in:
frosch
2011-01-14 15:34:33 +00:00
parent 09d7f172a6
commit 3d1008318b
16 changed files with 17 additions and 17 deletions

View File

@@ -19,7 +19,7 @@ class Blitter_32bppSimple : public Blitter_32bppBase {
public:
/* virtual */ void Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomLevel zoom);
/* virtual */ void DrawColourMappingRect(void *dst, int width, int height, PaletteID pal);
/* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, Blitter::AllocatorProc *allocator);
/* virtual */ Sprite *Encode(SpriteLoader::Sprite *sprite, AllocatorProc *allocator);
/* virtual */ const char *GetName() { return "32bpp-simple"; }
};