1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 06:49:53 +08:00

Fix incorrect initial rotation transfer value

Should have been removed as part of https://github.com/ppy/osu/pull/24360.
This commit is contained in:
Dean Herbert
2023-10-16 19:34:55 +09:00
Unverified
parent 10bab61441
commit 0bb95cfa88
@@ -97,7 +97,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
if (!rotationTransferred)
{
currentRotation = Rotation * 2;
currentRotation = Rotation;
rotationTransferred = true;
}