diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-02-13 11:46:02 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-02-13 11:46:02 +0000 |
commit | 91d0e8c9a86227bdc1ed81566e4da8b02aa15fff (patch) | |
tree | c3398675efcad0953eee2fdf2216b1b907d2f622 /games | |
parent | db601fa0a0139946976d3b2ad06877a5047e1364 (diff) |
No need to know anything about ospeed.
Diffstat (limited to 'games')
-rw-r--r-- | games/tetris/screen.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/games/tetris/screen.c b/games/tetris/screen.c index c336ea94bf1..fcb0abb47a5 100644 --- a/games/tetris/screen.c +++ b/games/tetris/screen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: screen.c,v 1.4 1999/03/22 07:38:27 pjanzen Exp $ */ +/* $OpenBSD: screen.c,v 1.5 2001/02/13 11:46:01 pjanzen Exp $ */ /* $NetBSD: screen.c,v 1.4 1995/04/29 01:11:36 mycroft Exp $ */ /*- @@ -75,7 +75,6 @@ static void stopset __P((int)); * Capabilities from TERMCAP. */ char PC, *BC, *UP; /* tgoto requires globals: ugh! */ -speed_t ospeed; static char *bcstr, /* backspace char */ @@ -293,7 +292,6 @@ scr_set() newtt.c_oflag &= ~OXTABS; if (tcsetattr(0, TCSADRAIN, &newtt) < 0) stop("tcsetattr() fails"); - ospeed = cfgetospeed(&newtt); (void) sigprocmask(SIG_BLOCK, &sigset, &osigset); /* |