Bug 2422 - `snaps` capped at 30.
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Misc
Version: 1.33 SVN
Hardware: PC Linux
: P2 trivial
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2005-10-15 11:59 EDT by Ben Noordhuis
Modified: 2007-05-21 11:23:53 EDT
1 user (show)

See Also:



Description Ben Noordhuis 2005-10-15 11:59:57 EDT
The cvar `snaps` is capped at 30, thereby diminishing the effects of running a
server at higher framerates. The fix is trivial. Apply to server/sv_client.c

1156,1157c1156,1157
<               } else if ( i > 30 ) {
<                       i = 30;
---
>               } else if ( i > sv_fps->integer ) {
>                       i = sv_fps->integer;
Comment 1 Tim Angus 2005-10-26 19:48:37 EDT
Nobody seems to have objected to this change, so I'm closing the bug.
Comment 2 Ryan C. Gordon 2007-05-21 11:23:53 EDT
Setting a QA contact on all ioquake3 bugs, even resolved ones. Sorry if you get a flood of email from this, it should only happen once. Apologies for the incovenience.

--ryan.