]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Fix for compiling with -DFANCY, as per PR 5832 by Joseph Myers <jsm28@cam.ac.uk>
authorhubertf <hubertf@NetBSD.org>
Fri, 24 Jul 1998 23:28:02 +0000 (23:28 +0000)
committerhubertf <hubertf@NetBSD.org>
Fri, 24 Jul 1998 23:28:02 +0000 (23:28 +0000)
robots/move.c

index c78bcb532b9f5b3ccfc793ded2b909c858b77177..ff8476cd19fd55db3e9a796a509656b94d60d29d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: move.c,v 1.6 1997/10/12 14:09:59 lukem Exp $   */
+/*     $NetBSD: move.c,v 1.7 1998/07/24 23:28:02 hubertf Exp $ */
 
 /*
  * Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)move.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: move.c,v 1.6 1997/10/12 14:09:59 lukem Exp $");
+__RCSID("$NetBSD: move.c,v 1.7 1998/07/24 23:28:02 hubertf Exp $");
 #endif
 #endif /* not lint */
 
@@ -54,6 +54,9 @@ void
 get_move()
 {
        int             c;
+#ifdef FANCY
+       int             lastmove;
+#endif /*FANCY*/
 
        if (Waiting)
                return;
@@ -64,7 +67,8 @@ get_move()
                        lastmove = *Next_move;
                else
                        lastmove = -1;  /* flag for "first time in" */
-       }
+       } else
+               lastmove = 0; /* Shut up gcc */
 #endif
        for (;;) {
                if (Teleport && must_telep())