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 | d6c915e6a631b76bcb1459f2509a142298a2daf8 (patch) | |
tree | 1b33ca8cec527f91fe453f6d8ac5dd3f0c8fe798 /src/os | |
parent | d751ce56cbd05a12d914016a51f62138eeaa826f (diff) | |
download | openttd-d6c915e6a631b76bcb1459f2509a142298a2daf8.tar.xz |
(svn r10761) -Fix (FS#1101, r10216): _pal_last_dirty changed to _pal_count_dirty without updating, so it was of by one
Diffstat (limited to 'src/os')
-rw-r--r-- | src/os/macosx/splash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |