- macOS backend update, plus moving base64.cpp around.

This commit is contained in:
Christoph Oelckers 2020-09-27 10:27:30 +02:00
parent 0795c79a3a
commit f8ae35f8a5
9 changed files with 93 additions and 48 deletions

View file

@ -262,7 +262,7 @@ void DrawTextCommon(F2DDrawer *drawer, FFont *font, int normalcolor, double x, d
double scaley = parms.scaley * parms.patchscaley;
if (parms.celly == 0) parms.celly = font->GetHeight() + 1;
parms.celly *= scaley;
parms.celly = int (parms.celly * scaley);
bool palettetrans = (normalcolor == CR_UNDEFINED && parms.TranslationId != 0);