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

FnSendSync() private method

private FnSendSync ( uint mega, uint sync, uint c ) : bool
mega uint
sync uint
c uint
return bool
        private bool FnSendSync(uint mega, uint sync, uint c)
        {
            Compact cpt = _skyCompact.FetchCpt((ushort)mega);
            cpt.Core.sync = (ushort)(sync & 0xffff);
            return false;
        }
Logic