diff options
author | truelight <truelight@openttd.org> | 2007-09-10 00:05:27 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-09-10 00:05:27 +0000 |
commit | 65aed53cab0a87031e99c36c4cb34933255ee2fb (patch) | |
tree | 7380b6b4f7d9dfbc5c02fbada5d4ceb788a0a7f3 /src/blitter | |
parent | f97d2b4706d3dca2d9e004c088c50b7fae1720a8 (diff) | |
download | openttd-65aed53cab0a87031e99c36c4cb34933255ee2fb.tar.xz |
(svn r11082) -Fix r11081: save before commit (yeah, whitelines are important too!)
Diffstat (limited to 'src/blitter')
-rw-r--r-- | src/blitter/32bpp_anim.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blitter/32bpp_anim.cpp b/src/blitter/32bpp_anim.cpp index 290739e4e..c2cca0721 100644 --- a/src/blitter/32bpp_anim.cpp +++ b/src/blitter/32bpp_anim.cpp @@ -15,6 +15,7 @@ void Blitter_32bppAnim::Draw(Blitter::BlitterParams *bp, BlitterMode mode, ZoomL Blitter_32bppOptimized::Draw(bp, mode, zoom); return; } + const SpriteLoader::CommonPixel *src, *src_line; uint32 *dst, *dst_line; uint8 *anim, *anim_line; |