]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - dab/main.cc
Tidy up curses state when we quit, instead of just doing exit().
[bsdgames-darwin.git] / dab / main.cc
index 399aa83f3a21acb824a317f9931a7734dc168a0e..73250709aff14a705ec1f9f9285f685c3d047ddd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.cc,v 1.2 2003/12/28 17:53:48 thorpej Exp $        */
+/*     $NetBSD: main.cc,v 1.3 2005/07/02 15:48:03 jdc Exp $    */
 
 /*-
  * Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
  * main.C: Main dots program
  */
 #include "defs.h"
-RCSID("$NetBSD: main.cc,v 1.2 2003/12/28 17:53:48 thorpej Exp $")
+RCSID("$NetBSD: main.cc,v 1.3 2005/07/02 15:48:03 jdc Exp $")
 
 #include <iostream>
 #include <unistd.h>
@@ -52,6 +52,8 @@ RCSID("$NetBSD: main.cc,v 1.2 2003/12/28 17:53:48 thorpej Exp $")
 #include "human.h"
 #include "ttyscrn.h"
 
+GAMESCREEN *sc;
+
 // Print the command line usage
 static void usage(char* pname)
 {
@@ -173,7 +175,7 @@ int main(int argc, char** argv)
        }
     }
 
-    GAMESCREEN *sc = TTYSCRN::create(acs, ny, nx);
+    sc = TTYSCRN::create(acs, ny, nx);
     if (sc == NULL)
        ::errx(1, "Dimensions too large for current screen.");