summaryrefslogtreecommitdiff
path: root/src/systems/grid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/grid.c')
-rw-r--r--src/systems/grid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/grid.c b/src/systems/grid.c
index 6e62a21..e907865 100644
--- a/src/systems/grid.c
+++ b/src/systems/grid.c
@@ -13,7 +13,7 @@
void Grid_Init(Grid_Storage* storage) {
INFO("Infinite Grid initialisation");
- Geometry plane_geo = Geo_CreatePlane(f32x2(1.0, 1.0));
+ Geometry plane_geo = Geo_CreatePlane(f32x2(1.0, 1.0), 1, 1);
Mesh plane_mesh = Mesh_Create(&plane_geo, true);
storage->plane_vertices = plane_mesh.vertex_buffer;