From 4a3c9e2d89836b16967c9ca2b5c8e08011f8f397 Mon Sep 17 00:00:00 2001 From: deskull Date: Fri, 12 Aug 2011 14:16:04 +0000 Subject: [PATCH] =?utf8?q?main-gcu.c=E4=B8=AD=E3=81=A7=E7=99=BA=E8=A6=8B?= =?utf8?q?=E3=81=95=E3=82=8C=E3=81=9F=E7=92=B0=E5=A2=83=E4=BE=9D=E5=AD=98?= =?utf8?q?=E5=95=8F=E9=A1=8C=E3=82=92=E8=A7=A3=E6=B1=BA=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main-gcu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main-gcu.c b/src/main-gcu.c index 0afe8df86..a8f5bc491 100644 --- a/src/main-gcu.c +++ b/src/main-gcu.c @@ -600,7 +600,7 @@ static errr Term_xtra_gcu_alive(int v) mvcur(curscr->cury, curscr->curx, LINES - 1, 0); #else /* this moves curses to bottom right corner */ - mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0); + mvcur(getcury(curscr), getcurx(curscr), LINES - 1, 0); #endif /* Exit curses */ @@ -736,7 +736,7 @@ static void Term_nuke_gcu(term *t) mvcur(curscr->cury, curscr->curx, LINES - 1, 0); #else /* This moves curses to bottom right corner */ - mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0); + mvcur(getcury(curscr), getcurx(curscr), LINES - 1, 0); #endif /* Flush the curses buffer */ -- 2.11.0