| 1346 | } |
| 1347 | |
| 1348 | string menu_keyhelp_select_keys() |
| 1349 | { |
| 1350 | const string up = command_to_string(CMD_MENU_UP); |
| 1351 | const string down = command_to_string(CMD_MENU_DOWN); |
| 1352 | return make_stringf("[<w>%s</w>|<w>%s</w>]", up.c_str(), down.c_str()); |
| 1353 | } |
| 1354 | |
| 1355 | static string _command_to_string(command_type cmd) |
| 1356 | { |
no test coverage detected