1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-12 14:43:03 +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] [STAThread]
public static void Main(string[] args) public static void Main(string[] args)
{ {
BasicGameHost host = Host.GetSuitableHost("osu-tests"); BasicGameHost host = Host.GetSuitableHost(@"osu-tests");
host.Load(new VisualTestGame()); host.Load(new VisualTestGame());
host.Run(); host.Run();
} }

View File

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