mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-01-22 17:41:11 +00:00
Forgot to SmoothLerp
This commit is contained in:
parent
880d2c0057
commit
c97e7eae07
1 changed files with 1 additions and 1 deletions
|
@ -2278,7 +2278,7 @@ static void CG_DrawVote(void)
|
|||
int begin = cg.time - cgs.voteTime;
|
||||
int end = VOTE_TIME - begin;
|
||||
int min = begin < end ? begin : end;
|
||||
alpha = Com_Clamp(0.f, 1.f, min / (1000.f * 0.125f));
|
||||
alpha = SmoothLerp(Com_Clamp(0.f, 1.f, min / (1000.f * 0.125f)));
|
||||
}
|
||||
|
||||
// slide in //
|
||||
|
|
Loading…
Reference in a new issue