File diff r22521:9088444a259e → r22522:211f98bf45cf
src/newgrf_gui.cpp
Show inline comments
 
@@ -36,16 +36,12 @@
 

	
 
#include "table/sprites.h"
 

	
 
#include <map>
 
#include "safeguards.h"
 

	
 
/* Maximum number of NewGRFs that may be loaded. Six reserved slots are:
 
 * 0 - config, 1 - sound, 2 - base, 3 - logos, 4 - climate, 5 - extra */
 
static const int MAX_NEWGRFS = MAX_FILE_SLOTS - 6;
 

	
 
/**
 
 * Show the first NewGRF error we can find.
 
 */
 
void ShowNewGRFError()
 
{
 
	/* Do not show errors when entering the main screen */
 
@@ -1506,26 +1502,26 @@ private:
 
	 * @return True if the GRF was successfully added.
 
	 */
 
	bool AddGRFToActive(int ins_pos = -1)
 
	{
 
		if (this->avail_sel == NULL || !this->editable || HasBit(this->avail_sel->flags, GCF_INVALID)) return false;
 

	
 
		int count = 0;
 
		uint count = 0;
 
		GRFConfig **entry = NULL;
 
		GRFConfig **list;
 
		/* Find last entry in the list, checking for duplicate grfid on the way */
 
		for (list = &this->actives; *list != NULL; list = &(*list)->next, ins_pos--) {
 
			if (ins_pos == 0) entry = list; // Insert position? Save.
 
			if ((*list)->ident.grfid == this->avail_sel->ident.grfid) {
 
				ShowErrorMessage(STR_NEWGRF_DUPLICATE_GRFID, INVALID_STRING_ID, WL_INFO);
 
				return false;
 
			}
 
			count++;
 
			if (!HasBit((*list)->flags, GCF_STATIC)) count++;
 
		}
 
		if (entry == NULL) entry = list;
 
		if (count >= MAX_NEWGRFS) {
 
		if (count >= NETWORK_MAX_GRF_COUNT) {
 
			ShowErrorMessage(STR_NEWGRF_TOO_MANY_NEWGRFS, INVALID_STRING_ID, WL_INFO);
 
			return false;
 
		}
 

	
 
		GRFConfig *c = new GRFConfig(*this->avail_sel); // Copy GRF details from scanned list.
 
		c->SetParameterDefaults();