More elimination of FORTAN-style if statements.
[super-star-trek.git] / src / sst.c
index a0d732d31fe5674c79b6e52063016ae028822b1e..ae8298407bece129a510c20c444e2c83675cdcc4 100644 (file)
--- a/src/sst.c
+++ b/src/sst.c
@@ -583,10 +583,12 @@ static void makemoves(void)
        }
        commandhook(commands[i].name, false);
        for (;;) {
-           if (game.alldone) break;            // Game has ended
+           if (game.alldone)
+               break;          // Game has ended
            if (game.optime != 0.0) {
                events();
-               if (game.alldone) break;        // Events did us in
+               if (game.alldone)
+                   break;      // Events did us in
            }
            if (game.state.galaxy[game.quadrant.x][game.quadrant.y].supernova) { // Galaxy went Nova!
                atover(false);