draw grid lines for programs in dark gray

This commit is contained in:
2026-03-18 10:49:57 +00:00
parent 4ed1def5b8
commit 59945a1237

View File

@@ -102,11 +102,11 @@ void simulation_draw(simulation_t *sim)
(Vector2){CELL_WIDTH, CELL_HEIGHT}, color); (Vector2){CELL_WIDTH, CELL_HEIGHT}, color);
} }
// DrawRectangleLinesEx((Rectangle){.x = s_x * CELL_WIDTH, DrawRectangleLinesEx((Rectangle){.x = s_x * CELL_WIDTH,
// .y = s_y * CELL_HEIGHT, .y = s_y * CELL_HEIGHT,
// .width = CELL_WIDTH * SIMULATION_ROW, .width = CELL_WIDTH * SIMULATION_ROW,
// .height = CELL_HEIGHT * SIMULATION_ROW}, .height = CELL_HEIGHT * SIMULATION_ROW},
// 1, WHITE); 1, DARKGRAY);
} }
} }