summaryrefslogtreecommitdiff
path: root/games/cribbage/crib.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/cribbage/crib.c')
-rw-r--r--games/cribbage/crib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/games/cribbage/crib.c b/games/cribbage/crib.c
index 4597f436564..a8a2de06381 100644
--- a/games/cribbage/crib.c
+++ b/games/cribbage/crib.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crib.c,v 1.9 2001/11/17 06:29:00 pjanzen Exp $ */
+/* $OpenBSD: crib.c,v 1.10 2002/05/31 05:11:37 pjanzen Exp $ */
/* $NetBSD: crib.c,v 1.7 1997/07/10 06:47:29 mikel Exp $ */
/*-
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)crib.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$OpenBSD: crib.c,v 1.9 2001/11/17 06:29:00 pjanzen Exp $";
+static char rcsid[] = "$OpenBSD: crib.c,v 1.10 2002/05/31 05:11:37 pjanzen Exp $";
#endif
#endif /* not lint */
@@ -100,7 +100,7 @@ main(argc, argv)
initscr();
(void)signal(SIGINT, rint);
- crmode();
+ cbreak();
noecho();
Playwin = subwin(stdscr, PLAY_Y, PLAY_X, 0, 0);
@@ -121,7 +121,7 @@ main(argc, argv)
mvcur(0, COLS - 1, LINES - 1, 0);
fflush(stdout);
instructions();
- crmode();
+ cbreak();
noecho();
clear();
refresh();