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

sceFontPixelToPointV() private method

private sceFontPixelToPointV ( FontLibrary FontLibrary, float FontPointsV, int ErrorCode ) : float
FontLibrary FontLibrary
FontPointsV float
ErrorCode int
return float
        public float sceFontPixelToPointV(FontLibrary FontLibrary, float FontPointsV, int* ErrorCode)
        {
            *ErrorCode = 0;
            return FontPointsV * PointDPI / FontLibrary.VerticalResolution;
        }