summaryrefslogtreecommitdiff
path: root/games/angband-x11/patches/patch-ad
blob: 434fda00b4c8e73c35bb0bd537cc1514c94ce5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
$NetBSD: patch-ad,v 1.1 2002/03/18 15:30:17 wiz Exp $

--- main-gcu.c.orig	Fri Feb  6 10:10:31 1998
+++ main-gcu.c
@@ -458,6 +458,14 @@
 		/* Flush the curses buffer */
 		(void)refresh();
 
+#ifdef __NetBSD__
+		{
+		        int cury, curx;
+
+			getyx(curscr, cury, curx);
+			mvcur(cury, curx, LINES - 1, 0);
+		}
+#else
 #ifdef SPECIAL_BSD
 		/* this moves curses to bottom right corner */
 		mvcur(curscr->cury, curscr->curx, LINES - 1, 0);
@@ -465,6 +473,7 @@
 		/* this moves curses to bottom right corner */
 		mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0);
 #endif
+#endif
 
 		/* Exit curses */
 		endwin();
@@ -529,12 +538,21 @@
 	/* Hack -- make sure the cursor is visible */
 	Term_xtra(TERM_XTRA_SHAPE, 1);
 
+#ifdef __NetBSD__
+	{
+	        int cury, curx;
+
+		getyx(curscr, cury, curx);
+		mvcur(cury, curx, LINES - 1, 0);
+	}
+#else
 #ifdef SPECIAL_BSD
 	/* This moves curses to bottom right corner */
 	mvcur(curscr->cury, curscr->curx, LINES - 1, 0);
 #else
 	/* This moves curses to bottom right corner */
 	mvcur(curscr->_cury, curscr->_curx, LINES - 1, 0);
+#endif
 #endif
 
 	/* Flush the curses buffer */