1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 18:27:26 +08:00

Don't set RelativePositionAxes when setting ScrollingAxes

This commit is contained in:
Dean Herbert 2017-08-08 09:20:54 +09:00
parent bb63d99fb8
commit debe13629f

View File

@ -23,7 +23,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
{
set
{
RelativePositionAxes = value;
RelativePositionAxes |= value;
if ((value & Axes.X) > 0)
X = (float)HitObject.StartTime;