Skip to content

Commit

Permalink
SpecialRing: Fix rotation inaccuracy
Browse files Browse the repository at this point in the history
Fixes #297.
  • Loading branch information
Mefiresu committed Nov 13, 2024
1 parent f92e8e3 commit 21e7b80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SonicMania/Objects/Global/SpecialRing.c
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void SpecialRing_State_Idle(void)
{
RSDK_THIS(SpecialRing);

self->angleZ = (self->angleZ + 4) & 0x3FF;
self->angleZ = (self->angleZ + 1) & 0x3FF;
self->angleY = (self->angleY + 4) & 0x3FF;

Vector2 range;
Expand Down

0 comments on commit 21e7b80

Please sign in to comment.