]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - battlestar/fly.c
Fix merge conflicts
[bsdgames-darwin.git] / battlestar / fly.c
index 6affb9d6a33543382496d5f3f18cbf9df8b5720c..6277def62f473c7a98aba753c53002ab389e3cb1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: fly.c,v 1.14 2007/12/15 19:44:39 perry Exp $   */
+/*     $NetBSD: fly.c,v 1.16 2021/05/02 12:50:43 rillig Exp $  */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)fly.c      8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: fly.c,v 1.14 2007/12/15 19:44:39 perry Exp $");
+__RCSID("$NetBSD: fly.c,v 1.16 2021/05/02 12:50:43 rillig Exp $");
 #endif
 #endif                         /* not lint */
 
 #include "extern.h"
 #undef UP
 #include <curses.h>
+#include <assert.h>
 
 #define MIDR  (LINES/2 - 1)
 #define MIDC  (COLS/2 - 1)
@@ -150,8 +151,8 @@ visual(void)
                        if (torps) {
                                torps -= 2;
                                blast();
-                               if (row == MIDR && column - MIDC < 2 && 
-                                   MIDC - column < 2) {
+                               if (row == MIDR && column < MIDC + 2 &&
+                                   column > MIDC - 2) {
                                        destroyed = 1;
                                        alarm(0);
                                }
@@ -264,7 +265,7 @@ moveenemy(int dummy __unused)
                        fuel = 0;
                        mvaddstr(0, 60, "*** Out of fuel ***");
                }
-       d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) * 
+       d = (double) ((row - MIDR) * (row - MIDR) + (column - MIDC) *
            (column - MIDC));
        if (d < 16) {
                row += (rnd(9) - 4) % (4 - abs(row - MIDR));