framerate tweaks

This commit is contained in:
Sheldon Lee
2020-06-16 19:53:10 +01:00
parent 90d5c8bd63
commit 570643ec39
2 changed files with 2 additions and 10 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ void drawGrid(Grid* grid)
height = grid->size/width;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
if (grid->state[toIndex(grid, x, y)]) mvprintw(y, x, "x");
if (grid->state[toIndex(grid, x, y)]) mvprintw(y, x, "X");
else mvprintw(y, x, " ");
}
}