From ed3e436e47092800735e38c6e1b4b09d9036572e Mon Sep 17 00:00:00 2001 From: Brian Cain Date: Fri, 15 Dec 2023 11:23:52 -0800 Subject: [PATCH] apprt: Fix key callback input key assignments Prior to this commit, two and three were not properly assigned. This commit updates that to assign two to two, and three to three. --- src/apprt/glfw.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apprt/glfw.zig b/src/apprt/glfw.zig index fce84beab..18593672b 100644 --- a/src/apprt/glfw.zig +++ b/src/apprt/glfw.zig @@ -821,8 +821,8 @@ pub const Surface = struct { .z => .z, .zero => .zero, .one => .one, - .two => .three, - .three => .four, + .two => .two, + .three => .three, .four => .four, .five => .five, .six => .six,