NScumm.Sky.Logic.FnTextKill C# (CSharp) Method

FnTextKill() private method

private FnTextKill ( uint a, uint b, uint c ) : bool
a uint
b uint
c uint
return bool
        private bool FnTextKill(uint a, uint b, uint c)
        {
            // Kill of text items that are mouse detectable

            uint id = FIRST_TEXT_COMPACT;

            for (int i = 10; i > 0; i--)
            {
                Compact cpt = _skyCompact.FetchCpt((ushort)id);
                if ((cpt.Core.status & (1 << 4)) != 0)
                    cpt.Core.status = 0;
                id++;
            }
            return true;
        }
Logic