From 683c60bdfebcffb219d9f240ed1051c2eca224b7 Mon Sep 17 00:00:00 2001 From: InKryption <59504965+InKryption@users.noreply.github.com> Date: Wed, 24 Nov 2021 04:15:08 +0100 Subject: [PATCH] glfw: run zig fmt --- glfw/src/Window.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/src/Window.zig b/glfw/src/Window.zig index d8463235..a99a615b 100644 --- a/glfw/src/Window.zig +++ b/glfw/src/Window.zig @@ -1707,7 +1707,7 @@ pub inline fn getInputMode(self: Window, mode: InputMode) isize { const value = c.glfwGetInputMode(self.handle, @enumToInt(mode)); // Possible errors: 'GLFW_NOT_INITIALIZED' and 'GLFW_INVALID_ENUM'; we guarantee both to be unreachable - getError() catch unreachable; + getError() catch unreachable; return @intCast(isize, value); }