[fb] Remove extraneous m_lines from scrollback

We have one big array of characters in scrollback, with lines of
constant width -- there's no reason to have an array of pointers when
offsets will do.
This commit is contained in:
Justin C. Miller
2021-02-04 20:55:56 -08:00
parent e4aafca7c3
commit c87563a520
2 changed files with 6 additions and 9 deletions

View File

@@ -17,7 +17,6 @@ public:
private:
char *m_data;
char **m_lines;
unsigned m_rows, m_cols;
unsigned m_start;
unsigned m_count;