summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-07-29 15:55:14 +0000
committercelestar <celestar@openttd.org>2005-07-29 15:55:14 +0000
commitd2a891db7e15065c5027fe7970b4fe5f4a8c5c12 (patch)
treef6e1da8d6f81fda55d3940bb8f27b46412f51d9c
parenta7acb22781adc7b58cc5780590ac5ad16a37841a (diff)
downloadopenttd-d2a891db7e15065c5027fe7970b4fe5f4a8c5c12.tar.xz
(svn r2747) -Fix: r2736 broke the newpaper display. Sorry.
-rw-r--r--news_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/news_gui.c b/news_gui.c
index c671deaa2..612483174 100644
--- a/news_gui.c
+++ b/news_gui.c
@@ -136,7 +136,7 @@ static void NewsWindowProc(Window *w, WindowEvent *e)
vp = w->viewport;
GfxFillRect(vp->left - w->left, vp->top - w->top,
vp->left - w->left + vp->width - 1, vp->top - w->top + vp->height - 1,
- ni->flags & NF_INCOLOR ? 0x4322 : 0x4323
+ (ni->flags & NF_INCOLOR ? 0x322 : 0x323) | USE_COLORTABLE
);
COPY_IN_DPARAM(0, ni->params, lengthof(ni->params));