mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix reversed inputs in input display in encore replay
This commit is contained in:
parent
161d375532
commit
41ef8d227f
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
(G_PlayerInputAnalog(pid, gc_up, guessinput) - G_PlayerInputAnalog(pid, gc_down, guessinput)) / (float)JOYAXISRANGE,
|
||||||
} :
|
} :
|
||||||
Vec2<float> {
|
Vec2<float> {
|
||||||
-cmd.turning / (float)KART_FULLTURN,
|
-cmd.turning * (encoremode ? -1 : 1) / (float)KART_FULLTURN,
|
||||||
cmd.throwdir / (float)KART_FULLTURN,
|
cmd.throwdir / (float)KART_FULLTURN,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue