]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - sail/pl_7.c
Sprinkle some "bool". And don't use '\0' to mean 'false'.
[bsdgames-darwin.git] / sail / pl_7.c
index 4a3bd62d9483a24770d61c5fd8ecd2d7b4f84aa2..cf1d009c4eab5705d721e52ae068ccacc947442f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: pl_7.c,v 1.27 2003/08/07 09:37:44 agc Exp $    */
+/*     $NetBSD: pl_7.c,v 1.31 2009/03/14 19:57:14 dholland Exp $       */
 
 /*
  * Copyright (c) 1983, 1993
 #if 0
 static char sccsid[] = "@(#)pl_7.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: pl_7.c,v 1.27 2003/08/07 09:37:44 agc Exp $");
+__RCSID("$NetBSD: pl_7.c,v 1.31 2009/03/14 19:57:14 dholland Exp $");
 #endif
 #endif /* not lint */
 
 #include <curses.h>
+#include <err.h>
 #include <signal.h>
 #include <stdarg.h>
 #include <stdio.h>
@@ -49,9 +50,9 @@ __RCSID("$NetBSD: pl_7.c,v 1.27 2003/08/07 09:37:44 agc Exp $");
 #include "player.h"
 #include "display.h"
 
-static void    Scroll(void);
-static void    endprompt(int);
-static void    adjustview(void);
+static void Scroll(void);
+static void endprompt(int);
+static void adjustview(void);
 
 /*
  * Display interface
@@ -82,8 +83,7 @@ void
 initscreen(void)
 {
        if (!SCREENTEST()) {
-               printf("Can't sail on this terminal.\n");
-               exit(1);
+               errx(1, "Can't sail on this terminal.");
        }
        /* initscr() already done in SCREENTEST() */
        view_w = newwin(VIEW_Y, VIEW_X, VIEW_T, VIEW_L);
@@ -114,7 +114,7 @@ cleanupscreen(void)
 
 /*ARGSUSED*/
 void
-newturn(int n __attribute__((__unused__)))
+newturn(int n __unused)
 {
        repaired = loaded = fired = changed = 0;
        movebuf[0] = '\0';
@@ -177,7 +177,7 @@ Signal(const char *fmt, struct ship *ship, ...)
        if (!done_curses)
                return;
        va_start(ap, ship);
-       if (*fmt == '\7')
+       if (*fmt == '\a')
                putchar(*fmt++);
        fmtship(format, sizeof(format), fmt, ship);
        vwprintw(scroll_w, format, ap);
@@ -194,7 +194,7 @@ Msg(const char *fmt, ...)
        if (!done_curses)
                return;
        va_start(ap, fmt);
-       if (*fmt == '\7')
+       if (*fmt == '\a')
                putchar(*fmt++);
        vwprintw(scroll_w, fmt, ap);
        va_end(ap);