1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Fix remaining game host regressions

This commit is contained in:
Dean Herbert 2019-03-28 01:29:06 +09:00
parent cd65ea4865
commit dfb7d78903

View File

@ -13,6 +13,11 @@ namespace osu.Game.Tests
public CleanRunHeadlessGameHost(string gameName = @"", bool bindIPC = false, bool realtime = true)
: base(gameName, bindIPC, realtime)
{
}
protected override void SetupForRun()
{
base.SetupForRun();
Storage.DeleteDirectory(string.Empty);
}
}