MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / getKeyboardName

Function getKeyboardName

TheForceEngine/TFE_Input/input.cpp:517–525  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515 }
516
517 const char* getKeyboardName(KeyboardCode key)
518 {
519 if (key > KEY_LAST && s_controllerAxisNames)
520 {
521 return s_keyboardNames[KEY_LAST];
522 }
523
524 return s_keyboardNames ? s_keyboardNames[key] : "";
525 }
526
527 const char* getKeyboardModifierName(KeyModifier mod)
528 {

Callers 4

getShortcutKeyComboTextFunction · 0.85
stringToKeyCodeFunction · 0.85
keycodeToStringFunction · 0.85
getBindingStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected