Skip to content

Commit

Permalink
Fix rglfw path typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bgk- committed May 24, 2024
1 parent 95e48e2 commit 0a2cb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raylib.build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pub const RaylibSetup = struct {
) !void {
// On macos rglfw.c include Objective-C files.
try self.flags.append("-ObjC");
const cRglfw = b.pathJoin(&[_][]const u8{ self.raylibSrcPath.getPath(b), "rlgfw.c" });
const cRglfw = b.pathJoin(&[_][]const u8{ self.raylibSrcPath.getPath(b), "rglfw.c" });
step.root_module.addCSourceFile(.{
.file = .{ .path = cRglfw },
.flags = self.flags.items,
Expand Down

0 comments on commit 0a2cb3f

Please sign in to comment.