1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-07 17:13:24 +08:00

Use @strings

This commit is contained in:
Drew DeVault 2016-10-04 14:23:34 -04:00
parent 6766fb5475
commit d246d129a4
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -12,7 +12,7 @@ namespace osu.Game.Database
{
if (Connection == null)
{
Connection = storage.GetDb("beatmaps");
Connection = storage.GetDatabase(@"beatmaps");
Connection.CreateTable<BeatmapMetadata>();
Connection.CreateTable<BeatmapSet>();
Connection.CreateTable<Beatmap>();