summaryrefslogtreecommitdiff
path: root/src/newgrf_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-10-21 12:45:43 +0000
committerrubidium <rubidium@openttd.org>2007-10-21 12:45:43 +0000
commit93303cffc453d8cd99b4a1e00645c072e7f7fae3 (patch)
tree083dc887b87e2d91b080af4d628b5beb12c04d8b /src/newgrf_gui.cpp
parenta68feea00a9fbfb8ffe2f00d6661f6f34a8706ce (diff)
downloadopenttd-93303cffc453d8cd99b4a1e00645c072e7f7fae3.tar.xz
(svn r11329) -Fix: if a NewGRF failed to load for some reason (like fatal errors), but it was a "compatible" NewGRF, it was shown with the compatible colour and not the not-loaded colour in the NewGRF list.
Diffstat (limited to 'src/newgrf_gui.cpp')
-rw-r--r--src/newgrf_gui.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp
index e3d7db51e..e1479d125 100644
--- a/src/newgrf_gui.cpp
+++ b/src/newgrf_gui.cpp
@@ -358,10 +358,13 @@ static void NewGRFWndProc(Window *w, WindowEvent *e)
break;
}
- if (HASBIT(c->flags, GCF_STATIC)) {
- pal = PALETTE_TO_GREY;
- } else if (HASBIT(c->flags, GCF_COMPATIBLE)) {
- pal = PALETTE_TO_ORANGE;
+ /* Do not show a "not-failure" colour when it actually failed to load */
+ if (pal != PALETTE_TO_RED) {
+ if (HASBIT(c->flags, GCF_STATIC)) {
+ pal = PALETTE_TO_GREY;
+ } else if (HASBIT(c->flags, GCF_COMPATIBLE)) {
+ pal = PALETTE_TO_ORANGE;
+ }
}
DrawSprite(SPR_SQUARE, pal, 5, y + 2);