On fontmanager.lua, this line:
self.fontScalar = 1 / display.contentScaleX
gives only a aprox. scale factor, leading to errors like using mismatch .fnt and .png files. Change it to:
self.fontScalar = display.pixelWidth / display.actualContentWidth
and it will give the right scale.
On fontmanager.lua, this line:
self.fontScalar = 1 / display.contentScaleX
gives only a aprox. scale factor, leading to errors like using mismatch .fnt and .png files. Change it to:
self.fontScalar = display.pixelWidth / display.actualContentWidth
and it will give the right scale.