Fix reversed inputs in input display in encore replay

This commit is contained in:
JugadorXEI 2024-08-09 04:52:02 +00:00 committed by Sal
parent 161d375532
commit 41ef8d227f

View file

@ -104,7 +104,7 @@ void K_DrawInputDisplay(float x, float y, INT32 flags, char mode, UINT8 pid, boo
(G_PlayerInputAnalog(pid, gc_up, guessinput) - G_PlayerInputAnalog(pid, gc_down, guessinput)) / (float)JOYAXISRANGE,
} :
Vec2<float> {
-cmd.turning / (float)KART_FULLTURN,
-cmd.turning * (encoremode ? -1 : 1) / (float)KART_FULLTURN,
cmd.throwdir / (float)KART_FULLTURN,
};