Remove tab characters

This commit is contained in:
Thomas Tan 2017-04-29 00:15:53 +08:00
parent e56bd3430a
commit 18897235fa

View File

@ -51,11 +51,11 @@ namespace osu.Game.Rulesets.Osu.Replays
/// Initialise this instance. Called before CreateAutoReplay. /// Initialise this instance. Called before CreateAutoReplay.
/// </summary> /// </summary>
protected virtual void Initialise() protected virtual void Initialise()
{ {
User = new User User = new User
{ {
Username = @"Autoplay", Username = @"Autoplay",
}; };
// We are using ApplyModsToRate and not ApplyModsToTime to counteract the speed up / slow down from HalfTime / DoubleTime so that we remain at a constant framerate of 60 fps. // We are using ApplyModsToRate and not ApplyModsToTime to counteract the speed up / slow down from HalfTime / DoubleTime so that we remain at a constant framerate of 60 fps.
frameDelay = applyModsToRate(1000.0 / 60.0); frameDelay = applyModsToRate(1000.0 / 60.0);