aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vendor/raylib/raylib.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin
index 6204f0bde..ebb1cdd27 100644
--- a/vendor/raylib/raylib.odin
+++ b/vendor/raylib/raylib.odin
@@ -118,8 +118,8 @@ when ODIN_OS == .Windows {
} else when ODIN_OS == .Darwin {
foreign import lib {
"macos" +
- "-arm64" when ODIN_ARCH == .arm64 else "" +
- "/libraylib" + ".500.dylib" when RAYLIB_SHARED else ".a",
+ ("-arm64" when ODIN_ARCH == .arm64 else "") +
+ "/libraylib" + (".500.dylib" when RAYLIB_SHARED else ".a"),
"system:Cocoa.framework",
"system:OpenGL.framework",
"system:IOKit.framework",