# HG changeset patch # User rubidium # Date 1221309631 0 # Node ID 48162ce1b642519e14256f5add8fbd78c163e27e # Parent 8f12703df40036e9bed4098e1f659e6b36ad1e62 (svn r14310) -Fix: don't show palette information in the newgrf lists of the network lobby. diff -r 8f12703df400 -r 48162ce1b642 src/newgrf_gui.cpp --- a/src/newgrf_gui.cpp Sat Sep 13 11:00:30 2008 +0000 +++ b/src/newgrf_gui.cpp Sat Sep 13 12:40:31 2008 +0000 @@ -98,11 +98,11 @@ 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);