diff options
| author | Gabriel Pariat <gabriel@pariatech.com> | 2024-01-27 14:04:43 -0500 |
|---|---|---|
| committer | Gabriel Pariat <gabriel@pariatech.com> | 2024-01-27 14:04:43 -0500 |
| commit | 4956f9dad39a083ca46ae1f6904086702854ea81 (patch) | |
| tree | ec0b5958588bdb000e7509f2c9531f589cbbfb0f | |
| parent | fd090c6672ee85df16679e2e7c5ccc1908d6bbbf (diff) | |
fix typo
| -rw-r--r-- | vendor/cgltf/cgltf.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/cgltf/cgltf.odin b/vendor/cgltf/cgltf.odin index e244bc30c..5e7f16b50 100644 --- a/vendor/cgltf/cgltf.odin +++ b/vendor/cgltf/cgltf.odin @@ -3,8 +3,8 @@ package cgltf import "core:c" when ODIN_OS == .Windows { foreign import lib "lib/cgltf.lib" } -else when ODIN_OS == .Linux { foreign import lib "../lib/cgltf.a" } -else when ODIN_OS == .Darwin { foreign import lib "../lib/darwin/cgltf.a" } +else when ODIN_OS == .Linux { foreign import lib "lib/cgltf.a" } +else when ODIN_OS == .Darwin { foreign import lib "lib/darwin/cgltf.a" } else { foreign import lib "system:cgltf" } |