1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 00:20:50 +08:00

Update osu-framework and specify game name

This commit is contained in:
Drew DeVault
2016-10-08 10:26:35 -04:00
Unverified
parent 965cd6539f
commit eb7486f109
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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();
}
+1 -1
View File
@@ -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();
}