mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Don't show post-race bot inputs on input display UI.
This commit is contained in:
parent
762dfd3063
commit
891f14dd26
1 changed files with 2 additions and 2 deletions
|
|
@ -3523,7 +3523,7 @@ static void K_drawInput(void)
|
||||||
#define BUTTH 11
|
#define BUTTH 11
|
||||||
|
|
||||||
#define drawbutt(xoffs, butt, symb)\
|
#define drawbutt(xoffs, butt, symb)\
|
||||||
if (stplyr->cmd.buttons & butt)\
|
if (!stplyr->exiting && (cmd->buttons & butt))\
|
||||||
{\
|
{\
|
||||||
offs = 2;\
|
offs = 2;\
|
||||||
col = accent1;\
|
col = accent1;\
|
||||||
|
|
@ -3549,7 +3549,7 @@ static void K_drawInput(void)
|
||||||
|
|
||||||
y -= 1;
|
y -= 1;
|
||||||
|
|
||||||
if (!cmd->turning) // no turn
|
if (stplyr->exiting || !cmd->turning) // no turn
|
||||||
target = 0;
|
target = 0;
|
||||||
else // turning of multiple strengths!
|
else // turning of multiple strengths!
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue