diff options
author | glx <glx@openttd.org> | 2007-08-03 02:21:10 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-08-03 02:21:10 +0000 |
commit | f95df6bb61f8e04bf146a8ebcd051b7e19820a82 (patch) | |
tree | 1b33ca8cec527f91fe453f6d8ac5dd3f0c8fe798 | |
parent | fcc1ccb99b5a6f013ed7fcfadf553c73d93a9375 (diff) | |
download | openttd-f95df6bb61f8e04bf146a8ebcd051b7e19820a82.tar.xz |
(svn r10761) -Fix (FS#1101, r10216): _pal_last_dirty changed to _pal_count_dirty without updating, so it was of by one
-rw-r--r-- | src/gfx.cpp | 2 | ||||
-rw-r--r-- | src/os/macosx/splash.cpp | 2 | ||||
-rw-r--r-- | src/video/win32_v.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp index f20f34923..faf011bae 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -662,7 +662,7 @@ void GfxInitPalettes() DoPaletteAnimations(); _pal_first_dirty = 0; - _pal_count_dirty = 255; + _pal_count_dirty = 256; } #define EXTR(p, q) (((uint16)(_palette_animation_counter * (p)) * (q)) >> 16) diff --git a/src/os/macosx/splash.cpp b/src/os/macosx/splash.cpp index 927f8d5ea..30eed880d 100644 --- a/src/os/macosx/splash.cpp +++ b/src/os/macosx/splash.cpp @@ -128,7 +128,7 @@ void DisplaySplashImage() _cur_palette[0xff].b = 0; _pal_first_dirty = 0; - _pal_count_dirty = 255; + _pal_count_dirty = 256; png_destroy_read_struct(&png_ptr, &info_ptr, &end_info); fclose(f); diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index 0164fe595..46c6cc851 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -149,7 +149,7 @@ static void ClientSizeChanged(int w, int h) if (AllocateDibSection(w, h)) { // mark all palette colors dirty _pal_first_dirty = 0; - _pal_count_dirty = 255; + _pal_count_dirty = 256; GameSizeChanged(); // redraw screen |