Add low-effort help text for commands

This commit is contained in:
AJ Martinez 2024-03-12 21:34:52 -07:00
parent 4564afba23
commit 2d348373d2

View file

@ -145,7 +145,7 @@ void list_commands()
if (flags & COM_NOSHOWHELP)
continue;
g_menu.push_back(menuitem_t {IT_STRING | IT_CALL, cmd->name, nullptr, nullptr, {.routine = call}, 0, 8});
g_menu.push_back(menuitem_t {IT_STRING | IT_CALL, cmd->name, "Press \xAA to execute this command", nullptr, {.routine = call}, 0, 8});
}
}