| 989 | |
| 990 | bool InputSubsystem::GetKeyToDo(int packedKey, bool reset, bool checkFocus) |
| 991 | { |
| 992 | const int value = InputBindingValue(packedKey); |
| 993 | return InputBindingIsDoubleTap(packedKey) ? QueryDoubleTapKeyToDo(GInput, value, reset, checkFocus) |
| 994 | : QueryKeyToDo(GInput, value, reset, checkFocus); |
| 995 | } |
| 996 | |
| 997 | int InputSubsystem::CheatActivated() const |
| 998 | { |
| 999 | return GInput.keyboard.CheatActivated(); |
no test coverage detected