From: deskull Date: Fri, 12 Aug 2011 14:16:04 +0000 (+0000) Subject: main-gcu.c中で発見された環境依存問題を解決。 X-Git-Tag: version-1-6-2a~38 X-Git-Url: http://git.osdn.net/view?p=hengbandforosx%2Fhengbandosx.git;a=commitdiff_plain;h=4a3c9e2d89836b16967c9ca2b5c8e08011f8f397 main-gcu.c中で発見された環境依存問題を解決。 --- 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 */