From 2257e03c331ba6b91f83e811b2ed834f721040cc Mon Sep 17 00:00:00 2001 From: darkvater Date: Thu, 13 Jan 2005 20:46:39 +0000 Subject: (svn r1502) -Fix: [1101889] Crash under windows... stupid typo in player_gui.c ^ should've been & -Fix: in multiplayer clientlist can only be opened once --- player_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player_gui.c') diff --git a/player_gui.c b/player_gui.c index da4e2eaa5..bb5606c95 100644 --- a/player_gui.c +++ b/player_gui.c @@ -163,7 +163,7 @@ static void PlayerFinancesWndProc(Window *w, WindowEvent *e) bool stickied = !!(w->flags4 & WF_STICKY); int player = w->window_number; DeleteWindow(w); - DoShowPlayerFinances(player, mode^1, stickied); + DoShowPlayerFinances(player, !HASBIT(mode, 0), stickied); } break; case 6: /* increase loan */ -- cgit v1.2.3-54-g00ecf