diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-05-31 05:11:38 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-05-31 05:11:38 +0000 |
commit | f78a5eeb5ae05049cc08ee1635f12a5d81b9a938 (patch) | |
tree | 7d741d2bdafc7eabd6e4a4a0edc1ee6a39e2e5bc /games/battlestar | |
parent | 2f4006bf08ae4d10962d5a3e8c2b4caf5f5af8ec (diff) |
crmode -> cbreak
Diffstat (limited to 'games/battlestar')
-rw-r--r-- | games/battlestar/fly.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/battlestar/fly.c b/games/battlestar/fly.c index feac9388cba..6832454ed6a 100644 --- a/games/battlestar/fly.c +++ b/games/battlestar/fly.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fly.c,v 1.9 2002/02/16 21:27:09 millert Exp $ */ +/* $OpenBSD: fly.c,v 1.10 2002/05/31 05:11:32 pjanzen Exp $ */ /* $NetBSD: fly.c,v 1.3 1995/03/21 15:07:28 cgd Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)fly.c 8.2 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: fly.c,v 1.9 2002/02/16 21:27:09 millert Exp $"; +static char rcsid[] = "$OpenBSD: fly.c,v 1.10 2002/05/31 05:11:32 pjanzen Exp $"; #endif #endif /* not lint */ @@ -88,7 +88,7 @@ visual() return (0); } oldsig = signal(SIGINT, succumb); - crmode(); + cbreak(); noecho(); screen(); row = rnd(LINES - 3) + 1; |