modified attrib from short to unsigned short

This commit is contained in:
chombier 2001-03-10 14:52:48 +00:00
parent 22d20a8edf
commit 4e5d9d3556
1 changed files with 6 additions and 5 deletions

View File

@ -72,11 +72,12 @@ struct VSscrn {
savelines, /* save lines off top? 0=no */ savelines, /* save lines off top? 0=no */
forcesave, /* NCSA 2.5: always force lines to be saved off top */ forcesave, /* NCSA 2.5: always force lines to be saved off top */
possibleForce, //we have receive a "move to 0,0"; if next is EEOl, forcesave possibleForce, //we have receive a "move to 0,0"; if next is EEOl, forcesave
ESscroll, /* Scroll screen when ES received */ ESscroll; /* Scroll screen when ES received */
attrib, /* current character writing attributes */ unsigned short attrib; /* current character writing attributes */
x,y, /* current cursor positon */ short x,y, /* current cursor positon */
Px,Py,Pattrib, /* saved cursor position and writing attributes */ Px,Py; /* saved cursor position and writing attributes */
DECAWM, /* Auto Wrap Mode 0=off */ unsigned short Pattrib; /* current character writing attributes */
short DECAWM, /* Auto Wrap Mode 0=off */
DECCKM, /* Cursor Key Mode */ DECCKM, /* Cursor Key Mode */
DECPAM, /* keyPad Application Mode */ DECPAM, /* keyPad Application Mode */
DECORG, /* origin mode */ DECORG, /* origin mode */