File diff r2254:17c8ce623289 → r2255:9b77be8fc0fa
unix.c
Show inline comments
 
@@ -353,12 +353,12 @@ void FiosMakeSavegameName(char *buf, con
 
	sprintf(buf, "%s/%s%s", _fios_path, name, extension);
 
}
 

	
 
void FiosDelete(const char *name)
 
bool FiosDelete(const char *name)
 
{
 
	char path[512];
 

	
 
	snprintf(path, lengthof(path), "%s/%s", _fios_path, name);
 
	unlink(path);
 
	return unlink(path) == 0;
 
}
 

	
 
bool FileExists(const char *filename)