Clean up some boolean arguments.
[super-star-trek.git] / src / setup.c
index b254a548ff2fa2df5d8c85cd175044c011f8e033..e4ee63def95f31f8d1baa964333c5b441adb237c 100644 (file)
@@ -274,12 +274,12 @@ void setup(bool needprompt)
                if (distq < 6.0*(BASEMAX+1-game.inbase) && Rand() < 0.75) {
                    contflag = true;
                    if (idebug)
-                       prout(_("=== Abandoning base #%d at %d-%d"), i, w.x, w.y);
+                       prout("=== Abandoning base #%d at %d-%d", i, w.x, w.y);
                    break;
                }
                else if (distq < 6.0 * (BASEMAX+1-game.inbase)) {
                    if (idebug)
-                       prout(_("=== Saving base #%d, close to #%d"), i, j);
+                       prout("=== Saving base #%d, close to #%d", i, j);
                }
            }
        } while (contflag);
@@ -407,7 +407,7 @@ void setup(bool needprompt)
     waitfor();
     newqad(false);
     if (game.nenhere-iqhere-game.ithere) game.shldup = true;
-    if (game.neutz) attack(0); // bad luck to start in a Romulan Neutral Zone
+    if (game.neutz) attack(false);     // bad luck to start in a Romulan Neutral Zone
 }
 
 bool choose(bool needprompt)