Skip to content

Commit

Permalink
Fix host_netinterval being 0 on startup breaking physics
Browse files Browse the repository at this point in the history
  • Loading branch information
Novum committed Jun 16, 2019
1 parent 88e989f commit 85bd83b
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 @@ -56,7 +56,7 @@ client_t *host_client; // current client
jmp_buf host_abortserver;

byte *host_colormap;
float host_netinterval;
float host_netinterval = 1.0/72;
cvar_t host_framerate = {"host_framerate","0",CVAR_NONE}; // set for slow motion
cvar_t host_speeds = {"host_speeds","0",CVAR_NONE}; // set for running times
cvar_t host_maxfps = {"host_maxfps", "200", CVAR_ARCHIVE}; //johnfitz
Expand Down

0 comments on commit 85bd83b

Please sign in to comment.