Skip to content

Commit

Permalink
Fix misleading comment about sv / svs global vars
Browse files Browse the repository at this point in the history
  • Loading branch information
slipher committed Oct 30, 2024
1 parent 772dc92 commit 145b361
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/engine/server/sv_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ Maryland 20850 USA.
#include "framework/Network.h"
#include "qcommon/sys.h"

serverStatic_t svs; // persistent server info
server_t sv; // local server
// These two structs have the same lifetime... both are cleared when the sgame exits
serverStatic_t svs;
server_t sv;

GameVM gvm; // game virtual machine

// Controls the gamelogic simulation time slice size. The game time always jumps in increments
Expand Down

0 comments on commit 145b361

Please sign in to comment.