Move log storage location after migration complete

This commit is contained in:
Dean Herbert
2020-05-11 21:38:27 +09:00
parent 6c350db097
commit a11be07bb1
2 changed files with 7 additions and 4 deletions

View File

@ -27,7 +27,7 @@ namespace osu.Game.IO
protected virtual string MutatePath(string path) => !string.IsNullOrEmpty(subPath) ? Path.Combine(subPath, path) : path;
protected void ChangeTargetStorage(Storage newStorage)
protected virtual void ChangeTargetStorage(Storage newStorage)
{
UnderlyingStorage = newStorage;
}