Skip to content

Commit

Permalink
Make app windows 11 sized
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrowland committed Jun 28, 2024
1 parent 86fa2cb commit 30a4b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ pub fn main() !void {

zglfw.windowHintTyped(.client_api, .no_api);

const window = try zglfw.Window.create(1600, 1000, "Simulations", null);
const window = try zglfw.Window.create(1600, 900, "Simulations", null);
defer window.destroy();
window.setSizeLimits(400, 400, -1, -1);
window.setPos(0, 0);
window.setPos(50, 50);

var gpa = std.heap.GeneralPurposeAllocator(.{}){};
defer _ = gpa.deinit();
Expand Down

0 comments on commit 30a4b6d

Please sign in to comment.