diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-15 13:06:27 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-08-15 13:06:27 +1000 |
commit | 938e3944fd7d55951e794224e6346488d3c701ea (patch) | |
tree | 74b1ffd98099a69392f3472768ea99ebe18c4586 /src/resources/gltf.c | |
parent | d4df846c97a7fd216748806abdb729a11a0ce2ec (diff) |
cone wip
Diffstat (limited to 'src/resources/gltf.c')
-rw-r--r-- | src/resources/gltf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/gltf.c b/src/resources/gltf.c index c5f1fd1..76ba0a5 100644 --- a/src/resources/gltf.c +++ b/src/resources/gltf.c @@ -168,7 +168,7 @@ bool model_load_gltf_str(const char* file_string, const char* filepath, Str8 rel // --- Skin size_t num_skins = data->skins_count; bool is_skinned = false; - Armature main_skeleton = {0}; + Armature main_skeleton = { 0 }; if (num_skins == 1) { is_skinned = true; } else if (num_skins > 1) { |