summaryrefslogtreecommitdiff
path: root/src/maths/primitives.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-31 02:34:19 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-31 02:34:19 +1100
commit6463c6c1090644438d8449f7ae1a152a4a196123 (patch)
treea312ff598c85af1a2e9dd65c0fadc08a2891b6ad /src/maths/primitives.h
parentc4bf1916fe219324e14384fc938e767daeab26c9 (diff)
more api design
Diffstat (limited to 'src/maths/primitives.h')
-rw-r--r--src/maths/primitives.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/primitives.h b/src/maths/primitives.h
index 60d36da..fd798c1 100644
--- a/src/maths/primitives.h
+++ b/src/maths/primitives.h
@@ -55,7 +55,7 @@ static mesh prim_cube_mesh_create() {
/** @brief create a new model with the shape of a cube */
static model_handle prim_cube_new(core* core) {
- model model = { 0 };
+ model model = { 0 };
mesh cube = prim_cube_mesh_create();
mesh_darray_push(model.meshes, cube);