summaryrefslogtreecommitdiff
path: root/news_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2004-11-23 22:36:11 +0000
committertron <tron@openttd.org>2004-11-23 22:36:11 +0000
commite8537f5512efde0c25833d22c61eee38fd9e56a6 (patch)
tree916a7e2673168f957b474a280a9df80af52ee64a /news_gui.c
parent06158be67436572e95b0bc4069475792fe525b79 (diff)
downloadopenttd-e8537f5512efde0c25833d22c61eee38fd9e56a6.tar.xz
(svn r787) Invert the sense of the DO_TRANS_BUILDINGS flag to be consistent with its own name and all other DO_* flags.
Now it is active-true.
Diffstat (limited to 'news_gui.c')
-rw-r--r--news_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/news_gui.c b/news_gui.c
index 163880205..22af2ce76 100644
--- a/news_gui.c
+++ b/news_gui.c
@@ -117,7 +117,7 @@ static void NewsWindowProc(Window *w, WindowEvent *e)
ni->string_id, 426);
} else {
byte bk = _display_opt;
- _display_opt |= DO_TRANS_BUILDINGS;
+ _display_opt &= ~DO_TRANS_BUILDINGS;
DrawWindowViewport(w);
_display_opt = bk;