diff options
Diffstat (limited to 'games/hangman')
-rw-r--r-- | games/hangman/getguess.c | 2 |
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; |