Fix typo in log when beatmap fails to load

This commit is contained in:
Joehu 2020-09-23 00:30:20 -07:00
parent 7efaa37447
commit c5b684bd2e
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ namespace osu.Game.Rulesets.Edit
}
catch (Exception e)
{
Logger.Error(e, "Could not load beatmap sucessfully!");
Logger.Error(e, "Could not load beatmap successfully!");
return;
}

View File

@ -399,7 +399,7 @@ namespace osu.Game.Screens.Play
}
catch (Exception e)
{
Logger.Error(e, "Could not load beatmap sucessfully!");
Logger.Error(e, "Could not load beatmap successfully!");
//couldn't load, hard abort!
return null;
}