Update with framework-side storage changes

This commit is contained in:
smoogipoo
2020-07-01 17:12:07 +09:00
parent 3fbb2b3f42
commit ab15b6031d
2 changed files with 6 additions and 4 deletions

View File

@ -24,12 +24,12 @@ namespace osu.Game.IO
"storage.ini"
};
public OsuStorage(GameHost host)
: base(host.Storage, string.Empty)
public OsuStorage(GameHost host, Storage defaultStorage)
: base(defaultStorage, string.Empty)
{
this.host = host;
storageConfig = new StorageConfigManager(host.Storage);
storageConfig = new StorageConfigManager(defaultStorage);
var customStoragePath = storageConfig.Get<string>(StorageConfig.FullPath);