diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-31 02:34:19 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-03-31 02:34:19 +1100 |
commit | 6463c6c1090644438d8449f7ae1a152a4a196123 (patch) | |
tree | a312ff598c85af1a2e9dd65c0fadc08a2891b6ad /src/maths/primitives.h | |
parent | c4bf1916fe219324e14384fc938e767daeab26c9 (diff) |
more api design
Diffstat (limited to 'src/maths/primitives.h')
-rw-r--r-- | src/maths/primitives.h | 2 |
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); |