File diff r5764:ea73b3997a8c → r5765:cfade44195bc
src/newgrf_config.cpp
Show inline comments
 
@@ -352,10 +352,8 @@ const GRFConfig *FindGRFConfig(uint32 gr
 

	
 
/** Structure for UnknownGRFs; this is a lightweight variant of GRFConfig */
 
typedef struct UnknownGRF UnknownGRF;
 
struct UnknownGRF {
 
struct UnknownGRF : public GRFIdentifier {
 
	UnknownGRF *next;
 
	uint32 grfid;
 
	uint8  md5sum[16];
 
	char   name[NETWORK_GRF_NAME_LENGTH];
 
};