File diff r21027:e87e97e6befd → r21028:e5db3f83cafa
src/blitter/32bpp_anim.hpp
Show inline comments
 
@@ -53,13 +53,13 @@ public:
 
	}
 

	
 
	template <BlitterMode mode> void Draw(const Blitter::BlitterParams *bp, ZoomLevel zoom);
 
};
 

	
 
/** Factory for the 32bpp blitter with animation. */
 
class FBlitter_32bppAnim: public BlitterFactory<FBlitter_32bppAnim> {
 
class FBlitter_32bppAnim : public BlitterFactory<FBlitter_32bppAnim> {
 
public:
 
	/* virtual */ const char *GetName() { return "32bpp-anim"; }
 
	/* virtual */ const char *GetDescription() { return "32bpp Animation Blitter (palette animation)"; }
 
	/* virtual */ Blitter *CreateInstance() { return new Blitter_32bppAnim(); }
 
};