mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 18:07:27 +09:00
Fix file naming.
This commit is contained in:
parent
79031b9e74
commit
c531d774b7
@ -10,9 +10,9 @@ namespace osu.Game.Modes.Replays
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reads a replay from a legacy replay file (.osr v1)
|
/// Reads a replay from a legacy replay file (.osr v1)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class LegacyReplay : FramedReplay
|
public class LegacyFramedReplay : FramedReplay
|
||||||
{
|
{
|
||||||
public LegacyReplay(StreamReader reader)
|
public LegacyFramedReplay(StreamReader reader)
|
||||||
{
|
{
|
||||||
float lastTime = 0;
|
float lastTime = 0;
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ namespace osu.Game.Modes.Scoring
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="reader">The stream reader.</param>
|
/// <param name="reader">The stream reader.</param>
|
||||||
/// <returns>The replay.</returns>
|
/// <returns>The replay.</returns>
|
||||||
public virtual Replay CreateLegacyReplayFrom(StreamReader reader) => new LegacyReplay(reader);
|
public virtual Replay CreateLegacyReplayFrom(StreamReader reader) => new LegacyFramedReplay(reader);
|
||||||
|
|
||||||
// [JsonProperty(@"count50")] 0,
|
// [JsonProperty(@"count50")] 0,
|
||||||
//[JsonProperty(@"count100")] 0,
|
//[JsonProperty(@"count100")] 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user