mirror of
https://github.com/ppy/osu.git
synced 2025-02-12 14:43:03 +08:00
Use @strings
This commit is contained in:
parent
6766fb5475
commit
d246d129a4
@ -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();
|
||||||
}
|
}
|
||||||
|
@ -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>();
|
||||||
|
Loading…
Reference in New Issue
Block a user