Skip to content

Commit

Permalink
- fixed: ThePatchRemap table was only initialized in one of FFont's c…
Browse files Browse the repository at this point in the history
…onstructors.
  • Loading branch information
coelckers committed Dec 15, 2018
1 parent c105a1f commit d1ca2a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/d_dehacked.cpp
Expand Up @@ -2694,7 +2694,6 @@ static bool LoadDehSupp ()
return false;
}
bool gotnames = false;
int i;


if (++DehUseCount > 1)
Expand Down
2 changes: 2 additions & 0 deletions src/v_font.cpp
Expand Up @@ -899,6 +899,8 @@ FFont::FFont (int lump)
FontName = NAME_None;
Cursor = '_';
noTranslate = false;
uint8_t pp = 0;
for (auto &p : PatchRemap) p = pp++;
}

//==========================================================================
Expand Down

0 comments on commit d1ca2a9

Please sign in to comment.