Skip to content

Commit 2b5d3d1

Browse files
coffeegrind123claude
andcommitted
Fix CVar macro syntax error in Vars.h
Fixed the CrosshairBacktrack CVar declaration - removed invalid 4th parameter. The CVar macro only takes: name, display name, and default value (plus optional flags). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 7da6ae6 commit 2b5d3d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Amalgam/src/SDK/Vars.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ namespace Vars
442442
CVar(Interp, "Fake interp", 0, SLIDER_CLAMP | SLIDER_PRECISION, 0, 1000, 5);
443443
CVar(Window, VA_LIST("Window", "Backtrack window"), 185, SLIDER_CLAMP | SLIDER_PRECISION, 0, 200, 5);
444444
CVar(PreferOnShot, "Prefer on shot", false);
445-
CVar(CrosshairBacktrack, "Crosshair backtrack", false, "Adjust tick when manually aiming");
445+
CVar(CrosshairBacktrack, "Crosshair backtrack", false);
446446

447447
CVar(Offset, "Offset", 0, NOSAVE | DEBUGVAR, -1, 1);
448448
NAMESPACE_END(Backtrack);

0 commit comments

Comments
 (0)