Skip to content

Commit 30e4fe3

Browse files
committed
fix: cap precision without cheats
1 parent 3616ab0 commit 30e4fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Features/Hud/Hud.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static inline int getPrecision(bool velocity = false) {
7070
int p = velocity ? sar_hud_velocity_precision.GetInt() : sar_hud_precision.GetInt();
7171
if (p < 0) p = 0;
7272
if (!sv_cheats.GetBool()) {
73-
const int max = velocity ? 2 : 6;
73+
const int max = 2;
7474
if (p > max) p = max;
7575
}
7676
return p;

0 commit comments

Comments
 (0)