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

LoadState() protected method

protected LoadState ( int slot, bool compat ) : bool
slot int
compat bool
return bool
        protected bool LoadState(int slot, bool compat)
        {
            var filename = ServiceLocator.FileStorage.Combine(ServiceLocator.FileStorage.GetDirectoryName(Game.Path), MakeSavegameName(slot, compat));
            return LoadState(filename);
        }

Same methods

ScummEngine::LoadState ( string path ) : bool
ScummEngine