1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 17:07:20 +08:00

Merge pull request from SirCmpwn/specify-game-name

Update osu-framework and specify game name
This commit is contained in:
Dean Herbert 2016-10-10 15:03:01 +09:00 committed by GitHub
commit 8706027155
3 changed files with 3 additions and 3 deletions
osu-framework
osu.Desktop.VisualTests
osu.Desktop

@ -1 +1 @@
Subproject commit 19252f6177622908cfbbf3caed7ceca42e5832d6
Subproject commit 857a472d570227937de549d50fa8bd672022afbf

@ -12,7 +12,7 @@ namespace osu.Framework.VisualTests
[STAThread]
public static void Main(string[] args)
{
BasicGameHost host = Host.GetSuitableHost();
BasicGameHost host = Host.GetSuitableHost(@"visual-tests");
host.Add(new VisualTestGame());
host.Run();
}

@ -13,7 +13,7 @@ namespace osu.Desktop
[STAThread]
public static void Main()
{
BasicGameHost host = Host.GetSuitableHost();
BasicGameHost host = Host.GetSuitableHost(@"osu");
host.Add(new OsuGame());
host.Run();
}