CSPspEmu.Hle.Modules.libfont.sceLibFont.sceFontPixelToPointH C# (CSharp) Method

sceFontPixelToPointH() private method

private sceFontPixelToPointH ( FontLibrary FontLibrary, float FontPointsH, int ErrorCode ) : float
FontLibrary FontLibrary
FontPointsH float
ErrorCode int
return float
        public float sceFontPixelToPointH(FontLibrary FontLibrary, float FontPointsH, int* ErrorCode)
        {
            *ErrorCode = 0;
            return FontPointsH * PointDPI / FontLibrary.HorizontalResolution;
        }