Skip to content

Commit

Permalink
Replace all of names zen to Zentura
Browse files Browse the repository at this point in the history
  • Loading branch information
siniarskimar committed Feb 10, 2024
1 parent 76ab4c0 commit ad46821
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# zen
# Zentura

Code editor made from scratch.

Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn build(b: *std.build.Builder) void {
});

const zen = b.addExecutable(.{
.name = "zen",
.name = "zentura",
.root_source_file = .{ .path = "src/main.zig" },
.target = target,
.optimize = optimize,
Expand Down
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub fn main() !void {
c.glfwWindowHint(c.GLFW_CONTEXT_VERSION_MINOR, 1);
c.glfwWindowHint(c.GLFW_OPENGL_DEBUG_CONTEXT, c.GLFW_TRUE);

const window = c.glfwCreateWindow(800, 600, "zen", null, null);
const window = c.glfwCreateWindow(800, 600, "zentura", null, null);
if (window == null) {
return error.WindowCreationFailed;
}
Expand Down

0 comments on commit ad46821

Please sign in to comment.