main_gui.c
changeset 2549 f1d3b383d557
parent 2548 97ada3bd2702
child 2552 fb174febb0b1
--- a/main_gui.c	Sat Oct 22 06:39:32 2005 +0000
+++ b/main_gui.c	Sun Oct 23 13:04:44 2005 +0000
@@ -152,7 +152,7 @@
 
 static void ToolbarPauseClick(Window *w)
 {
-	if (_networking && !_network_server) { return;} // only server can pause the game
+	if (_networking && !_network_server) return; // only server can pause the game
 
 	if (DoCommandP(0, _pause ? 0 : 1, 0, NULL, CMD_PAUSE))
 		SndPlayFx(SND_15_BEEP);
@@ -913,8 +913,10 @@
 		// update the toolbar button too
 		CLRBIT(wt->disabled_state, button);
 		CLRBIT(wt->disabled_state, button + 1);
-		if (vp->zoom == 0) SETBIT(wt->disabled_state, button);
-		else if (vp->zoom == 2) SETBIT(wt->disabled_state, button + 1);
+		switch (vp->zoom) {
+			case 0: SETBIT(wt->disabled_state, button); break;
+			case 2: SETBIT(wt->disabled_state, button + 1); break;
+		}
 		SetWindowDirty(wt);
 	}