(String command)
| 711 | private static menuaction_s s_keys_help_computer_action = new menuaction_s(); |
| 712 | |
| 713 | private static void UnbindCommand(String command) { |
| 714 | int j; |
| 715 | String b; |
| 716 | |
| 717 | for (j = 0; j < 256; j++) { |
| 718 | b = ClientGlobals.keybindings[j]; |
| 719 | if (b == null) |
| 720 | continue; |
| 721 | if (b.equals(command)) |
| 722 | Key.SetBinding(j, ""); |
| 723 | } |
| 724 | } |
| 725 | |
| 726 | private static void FindKeysForCommand(String command, int twokeys[]) { |
| 727 | int count; |
no test coverage detected