1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 16:53:15 +08:00

Remove unnecessary schedules

This commit is contained in:
smoogipoo
2018-02-21 18:02:52 +09:00
Unverified
parent 9cd9c83f2c
commit 08e52e8c15
@@ -49,7 +49,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
accentColour = value;
if (LoadState >= LoadState.Ready)
Schedule(reloadTexture);
reloadTexture();
}
}
@@ -67,7 +67,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
borderColour = value;
if (LoadState >= LoadState.Ready)
Schedule(reloadTexture);
reloadTexture();
}
}