Avoid cursor move on every single character

This commit is contained in:
Michael Brown
2006-12-19 00:51:32 +00:00
parent 8e460de6be
commit e85bf52446
2 changed files with 22 additions and 4 deletions

View File

@@ -28,6 +28,8 @@ typedef uint32_t attr_t;
/** Curses SCREEN object */
typedef struct _curses_screen {
/** Current cursor position */
unsigned int curs_x, curs_y;
/** Current attribute */
attr_t attrs;