| 1569 | } |
| 1570 | |
| 1571 | bool process_command(command_type cmd) override |
| 1572 | { |
| 1573 | switch (cmd) |
| 1574 | { |
| 1575 | case CMD_MENU_HELP: |
| 1576 | show_specific_helps({ "macro-menu" |
| 1577 | #ifndef USE_TILE_LOCAL |
| 1578 | , "console-keycodes" |
| 1579 | #endif |
| 1580 | }); |
| 1581 | return true; |
| 1582 | default: |
| 1583 | return Menu::process_command(cmd); |
| 1584 | } |
| 1585 | } |
| 1586 | |
| 1587 | command_type get_command(int keyin) override |
| 1588 | { |
nothing calls this directly
no test coverage detected