NScumm.Scumm.ScummEngine.MakeSavegameName C# (CSharp) Method

MakeSavegameName() protected method

protected MakeSavegameName ( int slot, bool temporary ) : string
slot int
temporary bool
return string
        protected string MakeSavegameName(int slot, bool temporary)
        {
            return string.Format("{0}.{1}{2:D2}", Game.Id, temporary ? 'c' : 's', slot);
        }
ScummEngine