fix flipped vars
This commit is contained in:
parent
4ff71501f1
commit
fc49e6dba4
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ pub fn main() !void {
|
||||||
|
|
||||||
var extent = vk.Extent2D{ .width = 1280, .height = 720 };
|
var extent = vk.Extent2D{ .width = 1280, .height = 720 };
|
||||||
|
|
||||||
var window = try glfw.Window.create(extent.height, extent.width, app_name, null, null, .{});
|
var window = try glfw.Window.create(extent.width, extent.height, app_name, null, null, .{});
|
||||||
defer window.destroy();
|
defer window.destroy();
|
||||||
|
|
||||||
// temp allocator
|
// temp allocator
|
||||||
|
|
Loading…
Reference in a new issue