File diff r23482:de566f8c088d → r23483:3733e6b8ff17
src/network/core/core.cpp
Show inline comments
 
@@ -8,14 +8,12 @@
 
 */
 

	
 
/**
 
 * @file core.cpp Functions used to initialize/shut down the core network
 
 */
 

	
 
#ifdef ENABLE_NETWORK
 

	
 
#include "../../stdafx.h"
 
#include "../../debug.h"
 
#include "os_abstraction.h"
 
#include "packet.h"
 

	
 
#include "../../safeguards.h"
 
@@ -77,8 +75,6 @@ void NetworkSocketHandler::ReceiveGRFIde
 
	uint j;
 
	grf->grfid = p->Recv_uint32();
 
	for (j = 0; j < sizeof(grf->md5sum); j++) {
 
		grf->md5sum[j] = p->Recv_uint8();
 
	}
 
}
 

	
 
#endif /* ENABLE_NETWORK */