Fix parsing for AMF-Files.

This commit is contained in:
Kim Kulling
2021-04-03 10:25:03 +02:00
parent 89a8f87dae
commit da0543972b
15 changed files with 136 additions and 184 deletions

View File

@@ -276,7 +276,7 @@ std::string BaseImporter::GetExtension(const std::string &file) {
// thanks to Andy Maloney for the hint
std::string ret = file.substr(pos + 1);
ret = ai_str_tolower(ret);
ret = ai_tolower(ret);
return ret;
}