mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 06:23:53 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
d4e3d36c8c
1 changed files with 2 additions and 2 deletions
|
@ -55,10 +55,10 @@ namespace Files
|
|||
{
|
||||
boost::filesystem::path path = *iter;
|
||||
|
||||
if (!equal (extension, path.extension()))
|
||||
if (!equal (extension, boost::filesystem::path (path.extension()).string()))
|
||||
continue;
|
||||
|
||||
std::string filename = path.filename();
|
||||
std::string filename = boost::filesystem::path (path.filename()).string();
|
||||
|
||||
TIter result = mFiles.find (filename);
|
||||
|
||||
|
|
Loading…
Reference in a new issue