From e295e46e3eccd58626ce2b02aab24b96c025636b Mon Sep 17 00:00:00 2001 From: darkvater Date: Sun, 12 Sep 2004 21:49:38 +0000 Subject: (svn r223) -Fix: Const correctness and miscellaneous fixes. Thank you Tron for your diligent fixing of warnings (and some possibly bugs) (Tron) -CodeLayout: Remove trailing spaces and Windows linebreaks --- main_gui.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'main_gui.c') diff --git a/main_gui.c b/main_gui.c index 17acb1256..5f62fa956 100644 --- a/main_gui.c +++ b/main_gui.c @@ -2226,10 +2226,10 @@ void SetupColorsAndInitialWindow() w = AllocateWindowDesc(&_toolb_normal_desc); w->disabled_state = 1 << 17; // disable zoon-in button (by default game is zoomed in) - if (_networking) { // if networking, disable fast-forward button - w->disabled_state |= (1 << 1); - if (!_networking_server) // if not server, disable pause button - w->disabled_state |= (1 << 0); + if (_networking) { // if networking, disable fast-forward button + w->disabled_state |= (1 << 1); + if (!_networking_server) // if not server, disable pause button + w->disabled_state |= (1 << 0); } w->flags4 &= ~WF_WHITE_BORDER_MASK; -- cgit v1.2.3-54-g00ecf