Added $ check for language support for StaticTextSwitchable

This commit is contained in:
Randy Heit 2016-01-07 12:49:38 -06:00
parent eafa394af4
commit cd4076dc1b
1 changed files with 2 additions and 0 deletions

View File

@ -32,6 +32,7 @@
**
*/
#include "v_text.h"
#include "gstrings.h"
void M_DrawConText (int color, int x, int y, const char *str);
@ -503,6 +504,7 @@ public:
int Draw(FOptionMenuDescriptor *desc, int y, int indent, bool selected)
{
const char *txt = mCurrent? (const char*)mAltText : mLabel;
if (*txt == '$') txt = GStrings(txt + 1);
int w = SmallFont->StringWidth(txt) * CleanXfac_1;
int x = (screen->GetWidth() - w) / 2;
screen->DrawText (SmallFont, mColor, x, y, txt, DTA_CleanNoMove_1, true, TAG_DONE);