mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 04:17:03 +00:00
mesh cook bug fixes
This commit is contained in:
@@ -129,14 +129,15 @@ public:
|
||||
std::vector<HECL::SystemString> opSpecs;
|
||||
auto it = m_info.args.begin();
|
||||
++it;
|
||||
for (;it != m_info.args.end();
|
||||
++it)
|
||||
for (; it != m_info.args.end() ; ++it)
|
||||
{
|
||||
HECL::SystemString itName = *it;
|
||||
HECL::ToLower(itName);
|
||||
for (auto& spec : specs)
|
||||
{
|
||||
if (!itName.compare(spec.spec.m_name))
|
||||
HECL::SystemString compName(spec.spec.m_name);
|
||||
HECL::ToLower(compName);
|
||||
if (!itName.compare(compName))
|
||||
{
|
||||
opSpecs.push_back(spec.spec.m_name);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user