forked from Bananymous/banan-os
Snake render grid lines without extra space after last '#'
This commit is contained in:
parent
d613da4b6c
commit
4363118d9d
|
@ -81,7 +81,8 @@ void setup_grid()
|
|||
printf("\e[H\e[J");
|
||||
|
||||
// Render top line
|
||||
for (int x = 0; x < g_grid_size.x + 2; x++)
|
||||
putchar('#');
|
||||
for (int x = 1; x < g_grid_size.x + 2; x++)
|
||||
printf(" #");
|
||||
putchar('\n');
|
||||
|
||||
|
@ -90,7 +91,8 @@ void setup_grid()
|
|||
printf("#\e[%dC#\n", g_grid_size.x * 2 + 1);
|
||||
|
||||
// Render Bottom line
|
||||
for (int x = 0; x < g_grid_size.x + 2; x++)
|
||||
putchar('#');
|
||||
for (int x = 1; x < g_grid_size.x + 2; x++)
|
||||
printf(" #");
|
||||
putchar('\n');
|
||||
|
||||
|
|
Loading…
Reference in New Issue