Add missing '%' character to zsh-style chat prompt.

This commit is contained in:
Mari the Deer 2023-05-17 10:48:30 +02:00
commit fe7b67591c
2 changed files with 3 additions and 3 deletions

View file

@ -437,7 +437,7 @@ Class SWWMStatusBar : BaseStatusBar
String pname = players[consoleplayer].GetUserName();
// strip colors
SWWMUtility.StripColor(pname);
String fullstr = String.Format("\cq%s\cd@\cqdemolitionist%d\cn ~ \c-wall %s_",pname,consoleplayer+1,txt);
String fullstr = String.Format("\cq%s\cd@\cqdemolitionist%d\cn ~ \cd% \c-wall %s_",pname,consoleplayer+1,txt);
// cut out to fit
int w = mSmallFont.StringWidth(fullstr);
if ( w > ss.x-4 )