diff --git a/build.zig b/build.zig index 0356b98..faaa157 100644 --- a/build.zig +++ b/build.zig @@ -69,6 +69,7 @@ pub fn build(b: *std.Build) void { // don't need and to put everything under a single module. const exe = b.addExecutable(.{ .name = "base_road_network", + .use_llvm = true, .root_module = b.createModule(.{ // b.createModule defines a new module just like b.addModule but, // unlike b.addModule, it does not expose the module to consumers of diff --git a/src/common/constants.zig b/src/common/constants.zig index 80b8f07..c87cffc 100644 --- a/src/common/constants.zig +++ b/src/common/constants.zig @@ -1,9 +1,9 @@ const clr = @import("raylib").Color; /// Screen Width -pub const WIDTH = 1366; +pub const WIDTH = 1920; /// Screen Height -pub const HEIGHT = 768; +pub const HEIGHT = 1080; pub const BACKGROUND_COLOR = clr.light_gray; /// Base node radius