- fixed: ThePatchRemap table was only initialized in one of FFont's constructors.

This commit is contained in:
Christoph Oelckers 2018-12-15 17:49:12 +01:00
parent c105a1f670
commit d1ca2a91f3
2 changed files with 2 additions and 1 deletions

View File

@ -2694,7 +2694,6 @@ static bool LoadDehSupp ()
return false;
}
bool gotnames = false;
int i;
if (++DehUseCount > 1)

View File

@ -899,6 +899,8 @@ FFont::FFont (int lump)
FontName = NAME_None;
Cursor = '_';
noTranslate = false;
uint8_t pp = 0;
for (auto &p : PatchRemap) p = pp++;
}
//==========================================================================