Input display: fix flipped vertical inputs when reading ticcmds

This commit is contained in:
AJ Martinez 2024-03-18 19:56:02 -07:00
parent c7aac9f119
commit dc31ae20c6

View file

@ -105,7 +105,7 @@ void K_DrawInputDisplay(float x, float y, INT32 flags, char mode, UINT8 pid, boo
} :
Vec2<float> {
-cmd.turning / (float)KART_FULLTURN,
-cmd.throwdir / (float)KART_FULLTURN,
cmd.throwdir / (float)KART_FULLTURN,
};
box.patch(gfx("PAD{}", analog ? "N" : dpad_suffix(dpad)));