mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-31 02:37:15 +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 drawbutt(xoffs, butt, symb)\
|
||||
if (stplyr->cmd.buttons & butt)\
|
||||
if (!stplyr->exiting && (cmd->buttons & butt))\
|
||||
{\
|
||||
offs = 2;\
|
||||
col = accent1;\
|
||||
|
|
@ -3549,7 +3549,7 @@ static void K_drawInput(void)
|
|||
|
||||
y -= 1;
|
||||
|
||||
if (!cmd->turning) // no turn
|
||||
if (stplyr->exiting || !cmd->turning) // no turn
|
||||
target = 0;
|
||||
else // turning of multiple strengths!
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue