aboutsummaryrefslogtreecommitdiff
path: root/vendor/raylib
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2024-06-06 21:03:35 +0100
committergingerBill <bill@gingerbill.org>2024-06-06 21:03:35 +0100
commitff37a7435cbb794bdf4244f94e0abe820c8a8288 (patch)
tree46815b8bcafa0b7d093c701861d858541bb73694 /vendor/raylib
parentd0dbe9a1bd3ca5187414e43f2cf804443e468f18 (diff)
Add parentheses around the foreign import paths
Diffstat (limited to 'vendor/raylib')
-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",