Core/ResourceSaver: Remove leading point (".obj" => "obj")
This commit is contained in:
parent
1406c714ac
commit
b917738ed4
|
|
@ -72,6 +72,9 @@ namespace Nz
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (extension[0] == '.')
|
||||||
|
extension.erase(extension.begin());
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
for (const auto& saverPtr : m_savers)
|
for (const auto& saverPtr : m_savers)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue