aboutsummaryrefslogtreecommitdiff
path: root/vendor/stb
diff options
context:
space:
mode:
authorpvance <phillipvancejr@protonmail.com>2022-07-28 04:25:18 -0400
committerGitHub <noreply@github.com>2022-07-28 04:25:18 -0400
commit21f2c06f4be9ac8aa0738e9dc71d1024cb148e07 (patch)
treecad545dbf2c84756384aa82f1575448b89f176a7 /vendor/stb
parent727a25f41f715b4c432504d6c53116916656e1f4 (diff)
Update stb_image_resize.odin
Diffstat (limited to 'vendor/stb')
-rw-r--r--vendor/stb/image/stb_image_resize.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/stb/image/stb_image_resize.odin b/vendor/stb/image/stb_image_resize.odin
index 4268aeb34..be1f8dbd6 100644
--- a/vendor/stb/image/stb_image_resize.odin
+++ b/vendor/stb/image/stb_image_resize.odin
@@ -2,9 +2,9 @@ package stb_image
import c "core:c/libc"
-when ODIN_OS == .Windows { foreign import stbiw "../lib/stb_image_write.lib" }
-when ODIN_OS == .Linux { foreign import stbiw "../lib/stb_image_write.a" }
-when ODIN_OS == .Darwin { foreign import stbiw "../lib/stb_image_write.a" }
+when ODIN_OS == .Windows { foreign import lib "../lib/stb_image_write.lib" }
+when ODIN_OS == .Linux { foreign import lib "../lib/stb_image_write.a" }
+when ODIN_OS == .Darwin { foreign import lib "../lib/stb_image_write.a" }
//////////////////////////////////////////////////////////////////////////////
//