Resolve CA1805 inspections

"Member is explicitly initialized to its default value"
This commit is contained in:
Bartłomiej Dach
2020-11-01 18:47:40 +01:00
parent 6ff13e399a
commit 2b0bea535e
4 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ namespace osu.Game.Rulesets.Replays
/// When set, we will ensure frames executed by nested drawables are frame-accurate to replay data.
/// Disabling this can make replay playback smoother (useful for autoplay, currently).
/// </summary>
public bool FrameAccuratePlayback = false;
public bool FrameAccuratePlayback;
protected bool HasFrames => Frames.Count > 0;