Scale was always 0 causing Kerning not to be applied

This commit is contained in:
Learath 2014-11-25 15:29:04 +02:00 committed by oy
parent 75222892be
commit be1adf7e51

View file

@ -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)