File diff r27158:8d6feca48662 → r27159:693b9615eaea
src/fileio.cpp
Show inline comments
 
@@ -137,13 +137,13 @@ void FioFCloseFile(FILE *f)
 
/**
 
 * Find a path to the filename in one of the search directories.
 
 * @param subdir Subdirectory to try.
 
 * @param filename Filename to look for.
 
 * @return String containing the path if the path was found, else an empty string.
 
 */
 
std::string FioFindFullPath(Subdirectory subdir, const char *filename)
 
std::string FioFindFullPath(Subdirectory subdir, const std::string &filename)
 
{
 
	assert(subdir < NUM_SUBDIRS);
 

	
 
	for (Searchpath sp : _valid_searchpaths) {
 
		std::string buf = FioGetDirectory(sp, subdir);
 
		buf += filename;