mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-23 22:37:55 +02:00
Fix resource creation
This commit is contained in:
@@ -68,9 +68,10 @@ std::unordered_set<ResourcePath> CFilesystemLoader::getFilteredFiles(std::functi
|
||||
return foundID;
|
||||
}
|
||||
|
||||
bool CFilesystemLoader::createResource(const ResourcePath & resID, bool update)
|
||||
bool CFilesystemLoader::createResource(const std::string & requestedFilename, bool update)
|
||||
{
|
||||
std::string filename = resID.getOriginalName() + '.' + boost::to_lower_copy(EResTypeHelper::getEResTypeAsString(resID.getType()));
|
||||
std::string filename = requestedFilename;
|
||||
ResourcePath resID(filename);
|
||||
|
||||
if (fileList.find(resID) != fileList.end())
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user