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:
commit
a69a4c5447
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue