CSPspEmu.Hle.Formats.Font.PGF.BitsToBytesHighAligned C# (CSharp) Method

BitsToBytesHighAligned() protected static method

protected static BitsToBytesHighAligned ( int Bits ) : int
Bits int
return int
        protected static int BitsToBytesHighAligned(int Bits)
        {
            //return MathUtils.NextHigherAligned(Bits, 8) / 8;
            return ((Bits + 31) & ~31) / 8;
        }