diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-14 02:32:09 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-14 02:32:09 -0400 |
| commit | 7dd075509dbbf4883388240af2cf4c6dd925cc87 (patch) | |
| tree | 798ff60b9570fdca60b4c11a1f6a7a5478e63a5a /src/addrs.h | |
| parent | 52940550fae5f5002d58653d146c862d8a637aa8 (diff) | |
| download | fujinet-chat-7dd075509dbbf4883388240af2cf4c6dd925cc87.tar.gz | |
use GR.1 for screen status line. also revert to using only one status_box.
Diffstat (limited to 'src/addrs.h')
| -rw-r--r-- | src/addrs.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/addrs.h b/src/addrs.h index dd9f23d..1aca8be 100644 --- a/src/addrs.h +++ b/src/addrs.h @@ -14,9 +14,13 @@ extern u8 *dlist_top, *dlist_bot; extern u16 *dlist_top_lms; extern u16 *dlist_bot_lms; -/* points to either edit_box or one of the status_boxes[] */ +/* points to either edit_box or status_box */ extern u16 *dlist_status_lms; +/* ANTIC mode of last line, either 2 for GR.0 (edit box showing) + or 6 for GR.1 (status box showing) */ +extern u8 *dlist_last_line; + /* only one of these (not one per screen) */ extern u8 *edit_box; @@ -29,5 +33,5 @@ extern u8 *screen_bot_addrs[7]; /* address of last line of _bot, where printing actually happens */ extern u8 *screen_lastlines[7]; -/* bottom 2 lines of the _bot display list for each screen */ -extern u8 *status_boxes[7]; +/* bottom 2 lines, shared by all screens */ +extern u8 *status_box; |
