s/AddBeatmap/ImportBeatmap/g

This commit is contained in:
Drew DeVault
2016-10-18 15:42:07 -04:00
parent 105bba6178
commit 768dd38fa0
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ namespace osu.Game.Database
} }
} }
public void AddBeatmap(string path) public void ImportBeatmap(string path)
{ {
string hash = null; string hash = null;
var reader = ArchiveReader.GetReader(storage, path); var reader = ArchiveReader.GetReader(storage, path);

View File

@ -74,7 +74,7 @@ namespace osu.Game
{ {
try try
{ {
Beatmaps.AddBeatmap(message.Path); Beatmaps.ImportBeatmap(message.Path);
// TODO: Switch to beatmap list and select the new song // TODO: Switch to beatmap list and select the new song
} }
catch (Exception ex) catch (Exception ex)