File diff r2254:17c8ce623289 → r2255:9b77be8fc0fa
win32.c
Show inline comments
 
@@ -911,12 +911,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);
 
	DeleteFile(path);
 
	return DeleteFile(path) != 0;
 
}
 

	
 
bool FileExists(const char *filename)