1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +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
parent 10bab61441
commit 0bb95cfa88
No known key found for this signature in database

View File

@ -97,7 +97,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
if (!rotationTransferred)
{
currentRotation = Rotation * 2;
currentRotation = Rotation;
rotationTransferred = true;
}