Skip to content

Commit

Permalink
Fix hints disappearing twice as fast
Browse files Browse the repository at this point in the history
  • Loading branch information
ZehMatt committed Jun 7, 2024
1 parent c3907a5 commit ed3ad8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gamemode/huds/hud_hint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function GM:HUDDrawHintHistory()

v.y = v.y or y
v.y = math.Approach(v.y, v.targetY, dt * 100)
v.elapsed = v.elapsed + (dt * 2 * v.timescale)
v.elapsed = v.elapsed + (dt * v.timescale)
local delta = v.holdtime - v.elapsed
delta = delta / v.holdtime
local alpha = 255
Expand Down

0 comments on commit ed3ad8c

Please sign in to comment.