summaryrefslogtreecommitdiff
path: root/games/hangman
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-06-02 19:47:13 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-06-02 19:47:13 +0000
commit53bde7aa54dba785761adf2e07bce713745dca5c (patch)
tree1a25d53d4d9eacde0eb46375ec056b291107f010 /games/hangman
parent1ff7940dde0b51ff9be56ffa751f4a93c90d65e5 (diff)
Update for modern curses implementation
Diffstat (limited to 'games/hangman')
-rw-r--r--games/hangman/getguess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/hangman/getguess.c b/games/hangman/getguess.c
index e7a31acda7e..cc5d7de84e2 100644
--- a/games/hangman/getguess.c
+++ b/games/hangman/getguess.c
@@ -106,7 +106,7 @@ readch()
}
else if (ch == CTRL('L')) {
wrefresh(curscr);
- mvcur(0, 0, curscr->cury, curscr->curx);
+ mvcur(0, 0, curscr->_cury, curscr->_curx);
}
else
return ch;