home · contact · privacy
Corrected erroneous interpretation of keycodes as command ids in variable names ...
[plomrogue] / src / client / keybindings.h
index 7da33567aeeaeae01186c7d377d3f9cc9eb6271f..e2031f3ea4515e7685576460cd1c3e02b381ac05 100644 (file)
@@ -13,7 +13,7 @@
 struct KeyBinding
 {
   struct KeyBinding * next;
-  uint16_t key; /* keycode */
+  uint16_t key;    /* keycode */
   char * command; /* name of command / functionality bound to keycode */
 };