summaryrefslogtreecommitdiff
path: root/games/robots
diff options
context:
space:
mode:
authorPaul Janzen <pjanzen@cvs.openbsd.org>2002-05-31 05:11:38 +0000
committerPaul Janzen <pjanzen@cvs.openbsd.org>2002-05-31 05:11:38 +0000
commitf78a5eeb5ae05049cc08ee1635f12a5d81b9a938 (patch)
tree7d741d2bdafc7eabd6e4a4a0edc1ee6a39e2e5bc /games/robots
parent2f4006bf08ae4d10962d5a3e8c2b4caf5f5af8ec (diff)
crmode -> cbreak
Diffstat (limited to 'games/robots')
-rw-r--r--games/robots/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/robots/main.c b/games/robots/main.c
index 17b19401bd5..6c820218d43 100644
--- a/games/robots/main.c
+++ b/games/robots/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.10 2002/05/31 04:21:30 pjanzen Exp $ */
+/* $OpenBSD: main.c,v 1.11 2002/05/31 05:11:37 pjanzen Exp $ */
/* $NetBSD: main.c,v 1.5 1995/04/22 10:08:54 cgd Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: main.c,v 1.10 2002/05/31 04:21:30 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.11 2002/05/31 05:11:37 pjanzen Exp $";
#endif
#endif /* not lint */
@@ -143,7 +143,7 @@ main(ac, av)
initscr();
signal(SIGINT, quit);
- crmode();
+ cbreak();
noecho();
nonl();
if (LINES != Y_SIZE || COLS != X_SIZE) {