- For controls that are not bound, the customize controls menu now displays
a black --- instead of ???. SVN r1050 (trunk)
This commit is contained in:
parent
1b835d46c1
commit
e391fe1aeb
3 changed files with 12 additions and 2 deletions
|
|
@ -1896,7 +1896,15 @@ void M_OptDrawer ()
|
|||
char description[64];
|
||||
|
||||
C_NameKeys (description, item->b.key1, item->c.key2);
|
||||
M_DrawConText(CR_WHITE, CurrentMenu->indent + 14, y-1+labelofs, description);
|
||||
if (description[0])
|
||||
{
|
||||
M_DrawConText(CR_WHITE, CurrentMenu->indent + 14, y-1+labelofs, description);
|
||||
}
|
||||
else
|
||||
{
|
||||
screen->DrawText(CR_BLACK, CurrentMenu->indent + 14, y + labelofs, "---",
|
||||
DTA_Clean, true, TAG_DONE);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue