diff options
author | rubidium <rubidium@openttd.org> | 2011-12-15 22:02:00 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-12-15 22:02:00 +0000 |
commit | fd559171b4ab5ce09b67aa8c4e9f2d0482a09558 (patch) | |
tree | 35469dedc14339858551f1c80ea4e049fc90d9f8 /src/video | |
parent | 3d88c74389ec978bb198415816364898963bb979 (diff) | |
download | openttd-fd559171b4ab5ce09b67aa8c4e9f2d0482a09558.tar.xz |
(svn r23527) -Codechange: unify colo(u)r as far as it goes
Diffstat (limited to 'src/video')
-rw-r--r-- | src/video/win32_v.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video/win32_v.cpp b/src/video/win32_v.cpp index ed774fd66..934acc061 100644 --- a/src/video/win32_v.cpp +++ b/src/video/win32_v.cpp @@ -176,7 +176,7 @@ static void ClientSizeChanged(int w, int h) { /* allocate new dib section of the new size */ if (AllocateDibSection(w, h)) { - /* mark all palette colors dirty */ + /* mark all palette colours dirty */ _cur_palette.first_dirty = 0; _cur_palette.count_dirty = 256; _local_palette = _cur_palette; |