From 40fd4377b0d2dbd7b6d3d0d3aa792fa7b1ec3984 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 3 Mar 2006 19:42:09 +0000 Subject: (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) --- rail_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rail_gui.c') diff --git a/rail_gui.c b/rail_gui.c index 16b764f9a..61d2375e9 100644 --- a/rail_gui.c +++ b/rail_gui.c @@ -291,8 +291,8 @@ static void BuildRailClick_Remove(Window *w) SndPlayFx(SND_15_BEEP); TOGGLEBIT(w->click_state, 16); - _remove_button_clicked = HASBIT(w->click_state, 16) != 0; - SetSelectionRed(HASBIT(w->click_state, 16) != 0); + _remove_button_clicked = HASBIT(w->click_state, 16); + SetSelectionRed(HASBIT(w->click_state, 16)); // handle station builder if (HASBIT(w->click_state, 16)) { -- cgit v1.2.3-54-g00ecf