1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-07-28 16:32:27 +01:00

Merge branch 'compat-3.14.0' of https://github.com/Chris-plus-alphanumericgibberish/dNAO.git into compat-3.14.0

This commit is contained in:
Chris-plus-alphanumericgibberish 2017-06-03 20:45:43 -04:00
commit a69a4c5447

View file

@ -28,10 +28,10 @@ struct WinDesc {
int flags; /* window flags */
xchar type; /* type of window */
boolean active; /* true if window is active */
uchar offx, offy; /* offset from topleft of display */
long rows, cols; /* dimensions */
long curx, cury; /* current cursor position */
long maxrow, maxcol; /* the maximum size used -- for MENU wins */
unsigned long offx, offy; /* offset from topleft of display */
unsigned long rows, cols; /* dimensions */
unsigned long curx, cury; /* current cursor position */
unsigned long maxrow, maxcol; /* the maximum size used -- for MENU wins */
/* maxcol is also used by WIN_MESSAGE for */
/* tracking the ^P command */
short *datlen; /* allocation size for *data */
@ -52,8 +52,8 @@ struct WinDesc {
/* descriptor for tty-based displays -- all the per-display data */
struct DisplayDesc {
uchar rows, cols; /* width and height of tty display */
uchar curx, cury; /* current cursor position on the screen */
unsigned long rows, cols; /* width and height of tty display */
unsigned long curx, cury; /* current cursor position on the screen */
#ifdef TEXTCOLOR
int color; /* current color */
#endif