X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fkeybindings.h;h=0d426e3e85602b144c6c120e6a75455a4a00219b;hb=65d60eba28c8e3128e1603e577c1436a2182f6bd;hp=ff89a4cadee19b87a7ae641546f58de613d2e245;hpb=d6093b3a7d57aa34d3ee2a84112c59328bf1feed;p=plomrogue diff --git a/src/client/keybindings.h b/src/client/keybindings.h index ff89a4c..0d426e3 100644 --- a/src/client/keybindings.h +++ b/src/client/keybindings.h @@ -15,7 +15,7 @@ struct Command; struct KeyBinding { struct KeyBinding * next; - uint16_t key; /* keycode */ + uint16_t keycode; struct Command * command; /* command in command DB to which key is bound */ }; @@ -30,7 +30,7 @@ struct KeyBindingDB /* Return command bound to keycode; NULL on failure. */ extern struct Command * get_command_to_keycode(struct KeyBinding * kb_p, - uint16_t key); + uint16_t keycode); /* Return human-readable name (of maximum 9 chars) for "keycode" as matched by * ncurses.h; if none is found, return "UNKNOWN".