- For controls that are not bound, the customize controls menu now displays

a black --- instead of ???.


SVN r1050 (trunk)
This commit is contained in:
Randy Heit 2008-06-26 17:55:48 +00:00
parent 1b835d46c1
commit e391fe1aeb
3 changed files with 12 additions and 2 deletions

View File

@ -1,4 +1,6 @@
June 26, 2008
- For controls that are not bound, the customize controls menu now displays
a black --- instead of ???.
- Applied Gez's BossBrainPatch3.
- Fixed: P_BulletSlope() did not return the linetarget. This effected
the Sigil, A_JumpIfCloser, and A_JumpIfTargetInLOS.

View File

@ -681,7 +681,7 @@ void C_NameKeys (char *str, int first, int second)
}
if (!c)
strcpy (str, "???");
*str = '\0';
}
void C_UnbindACommand (char *str)

View File

@ -1896,8 +1896,16 @@ void M_OptDrawer ()
char description[64];
C_NameKeys (description, item->b.key1, item->c.key2);
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;
case colorpicker: