Battle Fullscreen: Adjust battle completion text to 5 and a half seconds (from 6)

This commit is contained in:
toaster 2023-05-01 18:56:18 +01:00
parent 1058d210d1
commit d27a2fc7ef
2 changed files with 2 additions and 2 deletions

View file

@ -4457,7 +4457,7 @@ static void K_drawBattleFullscreen(void)
{ {
if (stplyr == &players[displayplayers[0]]) if (stplyr == &players[displayplayers[0]])
V_DrawFadeScreen(0xFF00, 16); V_DrawFadeScreen(0xFF00, 16);
if (exitcountdown <= 6*TICRATE && !stplyr->spectator) if (exitcountdown <= (11*TICRATE)/2 && !stplyr->spectator)
{ {
patch_t *p = kp_battlecool; patch_t *p = kp_battlecool;

View file

@ -7334,7 +7334,7 @@ void K_KartPlayerHUDUpdate(player_t *player)
{ {
if (player->exiting) if (player->exiting)
{ {
if (exitcountdown < 6*TICRATE) if (exitcountdown < (11*TICRATE)/2)
player->karthud[khud_cardanimation] += ((164-player->karthud[khud_cardanimation])/8)+1; player->karthud[khud_cardanimation] += ((164-player->karthud[khud_cardanimation])/8)+1;
} }
else else