SpecialRing: Fix rotation inaccuracy
Some checks failed
Build Mania / mania-windows (push) Has been cancelled
Build Mania / mania-windows-x64 (push) Has been cancelled
Build Mania / mania-linux (push) Has been cancelled

Fixes #297.
This commit is contained in:
Mefiresu 2024-11-13 20:47:37 +01:00
parent f92e8e3312
commit 21e7b80e70

View File

@ -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;