File diff r12766:a6dfd5e21d2f → r12767:3d23682b3fda
src/fios.cpp
Show inline comments
 
@@ -514,25 +514,25 @@ void FiosGetHeightmapList(SaveLoadDialog
 

	
 
	_fios_path = fios_hmap_path;
 

	
 
	char base_path[MAX_PATH];
 
	FioGetDirectory(base_path, sizeof(base_path), HEIGHTMAP_DIR);
 

	
 
	FiosGetFileList(mode, &FiosGetHeightmapListCallback, strcmp(base_path, _fios_path) == 0 ? HEIGHTMAP_DIR : NO_DIRECTORY);
 
}
 

	
 
#if defined(ENABLE_NETWORK)
 
#include "core/smallvec_type.hpp"
 
#include "network/network_content.h"
 
#include "md5.h"
 
#include "3rdparty/md5/md5.h"
 

	
 
/** Basic data to distinguish a scenario. Used in the server list window */
 
struct ScenarioIdentifier {
 
	uint32 scenid;    ///< ID for the scenario (generated by content)
 
	uint8 md5sum[16]; ///< MD5 checksum of file
 

	
 
	bool operator == (const ScenarioIdentifier &other) const
 
	{
 
		return this->scenid == other.scenid &&
 
				memcmp(this->md5sum, other.md5sum, sizeof(this->md5sum)) == 0;
 
	}