summaryrefslogtreecommitdiff
path: root/road_gui.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-03-03 19:42:09 +0000
committertron <tron@openttd.org>2006-03-03 19:42:09 +0000
commit40fd4377b0d2dbd7b6d3d0d3aa792fa7b1ec3984 (patch)
tree33b8df8ca1efa38a8227dd2ec34da277aed9c554 /road_gui.c
parent5b0e6f90a9a18ed549ebb70a1e1af35ef76361ef (diff)
downloadopenttd-40fd4377b0d2dbd7b6d3d0d3aa792fa7b1ec3984.tar.xz
(svn r3747) Change HASBIT() to return 0/1 instead of 0/value of tested bit, because the name suggests it does the former and current behavior broke in some places in very subtle ways (for example HASBIT(x, 0) != HASBIT(y, 1) doesn't work, returning a bool after HASBIT(x, 9) neither)
Diffstat (limited to 'road_gui.c')
-rw-r--r--road_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/road_gui.c b/road_gui.c
index 83bb81688..40096a474 100644
--- a/road_gui.c
+++ b/road_gui.c
@@ -158,7 +158,7 @@ static void BuildRoadClick_Remove(Window *w)
SetWindowDirty(w);
SndPlayFx(SND_15_BEEP);
TOGGLEBIT(w->click_state, 11);
- SetSelectionRed(HASBIT(w->click_state, 11) != 0);
+ SetSelectionRed(HASBIT(w->click_state, 11));
}
static void BuildRoadClick_Landscaping(Window *w)