home · contact · privacy
Removed indirection in control.c and therefore unused is_command_id_shortdsc().
[plomrogue] / src / client / keybindings.h
index e2031f3ea4515e7685576460cd1c3e02b381ac05..ea09d6582e5e2ab41a7d1fdedd37928d1c167277 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 */
 };