refactor: grid->rows and grid->cols

This commit is contained in:
bfredl
2022-05-18 13:06:02 +02:00
parent d7dd600716
commit 028329850e
13 changed files with 186 additions and 186 deletions

View File

@@ -58,8 +58,8 @@ struct ScreenGrid {
int *dirty_col;
// the size of the allocated grid.
int Rows;
int Columns;
int rows;
int cols;
// The state of the grid is valid. Otherwise it needs to be redrawn.
bool valid;