From 859ac28d24f1577fb7f524602b6a216bf5787fd8 Mon Sep 17 00:00:00 2001 From: 3gg <3gg@shellblade.net> Date: Sat, 1 Nov 2025 21:07:21 -0700 Subject: Implement LShift --- app/include/gfx/app.h | 1 + app/src/app.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/app/include/gfx/app.h b/app/include/gfx/app.h index 639fa2d..3017707 100644 --- a/app/include/gfx/app.h +++ b/app/include/gfx/app.h @@ -63,6 +63,7 @@ typedef enum Key { KeyX, KeyY, KeyZ, + KeyLShift, } Key; #ifdef __cplusplus diff --git a/app/src/app.c b/app/src/app.c index a7bb9c9..6eaa3d6 100644 --- a/app/src/app.c +++ b/app/src/app.c @@ -233,5 +233,7 @@ static int to_glfw_key(Key key) { return GLFW_KEY_Y; case KeyZ: return GLFW_KEY_Z; + case KeyLShift: + return GLFW_KEY_LEFT_SHIFT; } } -- cgit v1.2.3