Skip to content

Commit

Permalink
- disabled redirection to the original patch for FSpecialFont.
Browse files Browse the repository at this point in the history
Using the same code as for the standard font does not work as intended, the reason still needs to be investigated.
  • Loading branch information
coelckers committed Dec 15, 2018
1 parent d1ca2a9 commit e6e4f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v_font.cpp
Expand Up @@ -1552,13 +1552,13 @@ FSpecialFont::FSpecialFont (const char *name, int first, int count, FTexture **l

if (charlumps[i] != nullptr)
{
Chars[i].OriginalPic = charlumps[i];
if (!noTranslate)
{
Chars[i].TranslatedPic = new FImageTexture(new FFontChar1 (charlumps[i]->GetImage()), "");
TexMan.AddTexture(Chars[i].TranslatedPic);
}
else Chars[i].TranslatedPic = charlumps[i];
Chars[i].OriginalPic = Chars[i].TranslatedPic;
Chars[i].XMove = Chars[i].OriginalPic->GetDisplayWidth();
}
else
Expand Down

0 comments on commit e6e4f0f

Please sign in to comment.