aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/include/gfx/app.h1
-rw-r--r--app/src/app.c2
2 files changed, 3 insertions, 0 deletions
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 {
63 KeyX, 63 KeyX,
64 KeyY, 64 KeyY,
65 KeyZ, 65 KeyZ,
66 KeyLShift,
66} Key; 67} Key;
67 68
68#ifdef __cplusplus 69#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) {
233 return GLFW_KEY_Y; 233 return GLFW_KEY_Y;
234 case KeyZ: 234 case KeyZ:
235 return GLFW_KEY_Z; 235 return GLFW_KEY_Z;
236 case KeyLShift:
237 return GLFW_KEY_LEFT_SHIFT;
236 } 238 }
237} 239}