1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 02:43:19 +08:00

Remove unnecessary schedules

This commit is contained in:
smoogipoo 2018-02-21 18:02:52 +09:00
parent 9cd9c83f2c
commit 08e52e8c15

View File

@ -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();
}
}