Skip to content

Commit

Permalink
Merge pull request #1 from peartreegames/master
Browse files Browse the repository at this point in the history
Fix rglfw path typo
  • Loading branch information
L-Briand authored May 24, 2024
2 parents 02094fe + 0a2cb3f commit 4221d36
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 @@ -184,7 +184,7 @@ pub const RaylibSetup = struct {

// 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 4221d36

Please sign in to comment.