1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

height fix

This commit is contained in:
Laserlicht 2023-09-29 00:08:25 +02:00 committed by GitHub
parent 9ba1aa652d
commit 293214bb61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ CTrueTypeFont::~CTrueTypeFont() = default;
size_t CTrueTypeFont::getLineHeight() const
{
if (fallbackFont)
fallbackFont->getLineHeight();
return fallbackFont->getLineHeight();
return TTF_FontHeight(font.get());
}