File diff r19848:28461ca62457 → r19849:42900960d059
src/fios.cpp
Show inline comments
 
@@ -555,6 +555,22 @@ void FiosGetHeightmapList(SaveLoadDialog
 
	FiosGetFileList(mode, &FiosGetHeightmapListCallback, strcmp(base_path, _fios_path) == 0 ? HEIGHTMAP_DIR : NO_DIRECTORY);
 
}
 

	
 
/**
 
 * Get the directory for screenshots.
 
 * @return path to screenshots
 
 */
 
const char *FiosGetScreenshotDir()
 
{
 
	static char *fios_screenshot_path = NULL;
 

	
 
	if (fios_screenshot_path == NULL) {
 
		fios_screenshot_path = MallocT<char>(MAX_PATH);
 
		FioGetDirectory(fios_screenshot_path, MAX_PATH, SCREENSHOT_DIR);
 
	}
 

	
 
	return fios_screenshot_path;
 
}
 

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