Skip to content

Commit

Permalink
Changed default max_edicts from 8192 to 32000 = MAX_EDICTS
Browse files Browse the repository at this point in the history
(So that it accomodates any level even if max_edicts was not properly overriden)
  • Loading branch information
vsonnier committed Feb 10, 2025
1 parent 35434bd commit 89ad5df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ cvar_t host_maxfps = {"host_maxfps", "200", CVAR_ARCHIVE}; // johnfitz
cvar_t host_phys_max_ticrate = {"host_phys_max_ticrate", "0", CVAR_NONE}; // vso = [0 = disabled; MAX_PHYSICS_FREQ]

cvar_t host_timescale = {"host_timescale", "0", CVAR_NONE}; // johnfitz
cvar_t max_edicts = {"max_edicts", "8192", CVAR_NONE}; // johnfitz //ericw -- changed from 2048 to 8192, removed CVAR_ARCHIVE
cvar_t max_edicts = {"max_edicts", "32000", CVAR_NONE}; // vso -- changed from 8192 to 32000 = MAX_EDICTS, because there is no performance impact to do so
cvar_t cl_nocsqc = {"cl_nocsqc", "0", CVAR_NONE}; // spike -- blocks the loading of any csqc modules

cvar_t sys_ticrate = {"sys_ticrate", "0.025", CVAR_NONE}; // dedicated server
Expand Down

0 comments on commit 89ad5df

Please # to comment.