mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Warning/error fixing.
This commit is contained in:
@ -38,8 +38,7 @@ namespace osu.Game.Database
|
||||
using (Stream s = storage.GetStream(Path.Combine(replay_folder, replayFilename)))
|
||||
using (SerializationReader sr = new SerializationReader(s))
|
||||
{
|
||||
var ruleset = Ruleset.GetRuleset((PlayMode)sr.ReadByte());
|
||||
|
||||
Ruleset.GetRuleset((PlayMode)sr.ReadByte());
|
||||
score = new Score();
|
||||
|
||||
/* score.Pass = true;*/
|
||||
|
@ -40,6 +40,9 @@ namespace osu.Game.Modes
|
||||
/// </summary>
|
||||
public event Action Failed;
|
||||
|
||||
/// <summary>
|
||||
/// Notifies subscribers that the score is in a failed state.
|
||||
/// </summary>
|
||||
protected void TriggerFailed()
|
||||
{
|
||||
Failed?.Invoke();
|
||||
|
Reference in New Issue
Block a user