Subversion Repositories spk

Rev

Rev 82 | Rev 94 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 82 Rev 85
Line 91... Line 91...
91
	}
91
	}
92
}
92
}
93
 
93
 
94
void CVirtualFileSystem::_addFile(const Utils::String &sFile, const Utils::String &sDest, FileList *pList)
94
void CVirtualFileSystem::_addFile(const Utils::String &sFile, const Utils::String &sDest, FileList *pList)
95
{
95
{
96
	(*pList)[sFile.asFilename().lower()] = sDest.findReplace("//", "/");
96
	(*pList)[sFile.asFilename().removeIf(0, '/').lower()] = sDest.findReplace("//", "/");
97
}
97
}
98
void CVirtualFileSystem::_addModFile(const Utils::String &sFile, const Utils::String &sMod, FileList *pList)
98
void CVirtualFileSystem::_addModFile(const Utils::String &sFile, const Utils::String &sMod, FileList *pList)
99
{
99
{
100
	this->_addFile(sFile, sMod + "::" + sFile, pList);
100
	this->_addFile(sFile, sMod + "::" + sFile, pList);
101
}
101
}