summaryrefslogtreecommitdiff
path: root/src/video/sdl_v.cpp
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2007-06-19 15:18:26 +0000
committertruelight <truelight@openttd.org>2007-06-19 15:18:26 +0000
commitf5271393e1bd79cba7ce7fce6f944d048c512d6f (patch)
tree8678e3f66f8c41ce67c017d6dff9a41ad03af837 /src/video/sdl_v.cpp
parentcd10965a27fcca672b775928899c3e3777328b8b (diff)
downloadopenttd-f5271393e1bd79cba7ce7fce6f944d048c512d6f.tar.xz
(svn r10217) -Fix r10216: forgot to declare 'blitter' in win32 and cocoa driver (tnx glx)
Diffstat (limited to 'src/video/sdl_v.cpp')
-rw-r--r--src/video/sdl_v.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp
index 087a3464c..e42226c3b 100644
--- a/src/video/sdl_v.cpp
+++ b/src/video/sdl_v.cpp
@@ -57,9 +57,9 @@ static void InitPalette()
static void CheckPaletteAnim()
{
- Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter();
-
if (_pal_count_dirty != 0) {
+ Blitter *blitter = BlitterFactoryBase::GetCurrentBlitter();
+
switch (blitter->UsePaletteAnimation()) {
case Blitter::PALETTE_ANIMATION_VIDEO_BACKEND:
UpdatePalette(_pal_first_dirty, _pal_count_dirty);