From ee4173d8a430b89883c9f39b18a57003fa7ad7d5 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 13 Sep 2008 12:40:31 +0000 Subject: [PATCH] (svn r14310) -Fix: don't show palette information in the newgrf lists of the network lobby. --- src/newgrf_gui.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp index 34ff973af4..54e36fbc7b 100644 --- a/src/newgrf_gui.cpp +++ b/src/newgrf_gui.cpp @@ -98,11 +98,11 @@ static void ShowNewGRFInfo(const GRFConfig *c, uint x, uint y, uint w, uint bott SetDParam(0, STR_01A9_NONE); } y += DrawStringMultiLine(x, y, STR_NEWGRF_PARAMETER, w, bottom - y); - } - /* Draw the palette of the NewGRF */ - SetDParamStr(0, c->windows_paletted ? "Windows" : "DOS"); - y += DrawStringMultiLine(x, y, STR_NEWGRF_PALETTE, w, bottom - y); + /* Draw the palette of the NewGRF */ + SetDParamStr(0, c->windows_paletted ? "Windows" : "DOS"); + y += DrawStringMultiLine(x, y, STR_NEWGRF_PALETTE, w, bottom - y); + } /* Show flags */ if (c->status == GCS_NOT_FOUND) y += DrawStringMultiLine(x, y, STR_NEWGRF_NOT_FOUND, w, bottom - y);