diff options
| author | Alex Macafee <lxmcf20@gmail.com> | 2024-11-25 19:50:34 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-25 19:50:34 +1100 |
| commit | 6ebea39b3e94e47ae841f5a9d2e151b3fff30929 (patch) | |
| tree | 99f03a8b18a93f66230a0bcaadc0cddee14f3988 | |
| parent | b76781015bf7d9b887d4ad8cde447dae391a9e71 (diff) | |
Add missing trailing commas
| -rw-r--r-- | vendor/raylib/raylib.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index ec7ab0893..6582ed579 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -734,7 +734,7 @@ ShaderLocationIndex :: enum c.int { MAP_BRDF, // Shader location: sampler2d texture: brdf VERTEX_BONEIDS, // Shader location: vertex attribute: boneIds VERTEX_BONEWEIGHTS, // Shader location: vertex attribute: boneWeights - BONE_MATRICES // Shader location: array of matrices uniform: boneMatrices + BONE_MATRICES, // Shader location: array of matrices uniform: boneMatrices } @@ -851,7 +851,7 @@ CameraMode :: enum c.int { FREE, // Camera free mode ORBITAL, // Camera orbital, around target, zoom supported FIRST_PERSON, // Camera first person - THIRD_PERSON // Camera third person + THIRD_PERSON, // Camera third person } // Camera projection |