diff options
author | glx <glx@openttd.org> | 2007-06-19 15:26:10 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-06-19 15:26:10 +0000 |
commit | fc3ec8689b82f1241769ea346fff666460ccfddb (patch) | |
tree | 8684b706fc819847c136d23e6ba9a51a6bce5983 /src/video | |
parent | a7dd710f06fdb751f67a2db9533cbf38fc9b1a84 (diff) | |
download | openttd-fc3ec8689b82f1241769ea346fff666460ccfddb.tar.xz |
(svn r10218) -Fix r10216: more compile errors
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/win32_v.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index cf7afea03..b0f8f4f1a 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -236,7 +236,7 @@ static LRESULT CALLBACK WndProcGdi(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP switch (blitter->UsePaletteAnimation()) { case Blitter::PALETTE_ANIMATION_VIDEO_BACKEND: - UpdatePalette(_pal_first_dirty, _pal_count_dirty); + UpdatePalette(dc2, _pal_first_dirty, _pal_count_dirty); break; case Blitter::PALETTE_ANIMATION_BLITTER: @@ -793,7 +793,7 @@ static void Win32GdiMakeDirty(int left, int top, int width, int height) static void CheckPaletteAnim() { - if (_pal_last_dirty == -1) + if (_pal_count_dirty == 0) return; InvalidateRect(_wnd.main_wnd, NULL, FALSE); } |