summaryrefslogtreecommitdiff
path: root/src/blitter/32bpp_anim.hpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2011-12-24 23:33:45 +0000
committerpeter1138 <peter1138@openttd.org>2011-12-24 23:33:45 +0000
commit3ef77e55c5d552a58555f3d5eb7b7079b537fff3 (patch)
tree4a5d1131661b9fb4e94bf9409f089dae84f65f6e /src/blitter/32bpp_anim.hpp
parentdc497258d68ebcd19f4e2512e7255aca344bfff0 (diff)
downloadopenttd-3ef77e55c5d552a58555f3d5eb7b7079b537fff3.tar.xz
(svn r23670) -Feature: Add ability to adjust brightness of colour after remapping for 32bpp sprites
Diffstat (limited to 'src/blitter/32bpp_anim.hpp')
-rw-r--r--src/blitter/32bpp_anim.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blitter/32bpp_anim.hpp b/src/blitter/32bpp_anim.hpp
index b1a5da5b4..73cabb90d 100644
--- a/src/blitter/32bpp_anim.hpp
+++ b/src/blitter/32bpp_anim.hpp
@@ -17,7 +17,7 @@
/** The optimised 32 bpp blitter with palette animation. */
class Blitter_32bppAnim FINAL : public Blitter_32bppOptimized {
private:
- uint8 *anim_buf; ///< In this buffer we keep track of the 8bpp indexes so we can do palette animation
+ uint16 *anim_buf; ///< In this buffer we keep track of the 8bpp indexes so we can do palette animation
int anim_buf_width; ///< The width of the animation buffer.
int anim_buf_height; ///< The height of the animation buffer.
Palette palette; ///< The current palette.