mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
Scale was always 0 causing Kerning not to be applied
This commit is contained in:
parent
75222892be
commit
be1adf7e51
|
@ -593,7 +593,7 @@ public:
|
|||
pSizeData = GetSize(pFont, ActualSize);
|
||||
RenderSetup(pFont, ActualSize);
|
||||
|
||||
float Scale = 1/pSizeData->m_FontSize;
|
||||
float Scale = 1.0f/pSizeData->m_FontSize;
|
||||
|
||||
// set length
|
||||
if(Length < 0)
|
||||
|
|
Loading…
Reference in a new issue