1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 01:02:56 +08:00

Merge pull request #10213 from Joehuu/load-beatmap-log-typo

Fix typo in log when beatmap fails to load
This commit is contained in:
Dan Balasescu 2020-09-23 17:05:10 +09:00 committed by GitHub
commit db249f6868
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

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