Merge branch 'fix-replay-input-vflip' into 'master'

Input display: fix flipped vertical inputs when reading ticcmds

Closes #1157

See merge request KartKrew/Kart!2135
This commit is contained in:
AJ Martinez 2024-03-19 03:51:08 +00:00
commit 33b73f5121

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