Skip to content

Commit

Permalink
* Remove superfluous comments committed with fix to bug #3999
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Mar 2, 2009
1 parent 1072b25 commit 1bd63e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions code/qcommon/common.c
Expand Up @@ -2629,12 +2629,10 @@ void Com_Init( char *commandLine ) {

Sys_Init();

// Pick a port value that should be nice and random.
// As machines get faster Com_Milliseconds can't be used
// anymore as it results in a smaller and smaller range of
// qport values.
// Pick a random port value
Com_RandomBytes( (byte*)&qport, sizeof(int) );
Netchan_Init( qport & 0xffff );

VM_Init();
SV_Init();

Expand Down
6 changes: 2 additions & 4 deletions code/sys/sys_main.c
Expand Up @@ -534,10 +534,8 @@ int main( int argc, char **argv )

Sys_PlatformInit( );

// Set the initial time base.
// If not called here com_frameTime will always be zero.
// com_frameTime should be pseudo random.
Sys_Milliseconds();
// Set the initial time base
Sys_Milliseconds( );

Sys_ParseArgs( argc, argv );
Sys_SetBinaryPath( Sys_Dirname( argv[ 0 ] ) );
Expand Down

0 comments on commit 1bd63e5

Please sign in to comment.