Fix broken autocorrect fix
parent
6ee1a32fb2
commit
faf53b8e0f
|
@ -1538,7 +1538,7 @@ void ColladaLoader::AddTexture(aiMaterial &mat,
|
||||||
map = sampler.mUVId;
|
map = sampler.mUVId;
|
||||||
} else {
|
} else {
|
||||||
map = -1;
|
map = -1;
|
||||||
for (std::_String_const_iterator<std::_String_val<std::_Simple_types<char> > >::value_type it : sampler.mUVChannel) {
|
for (auto it : sampler.mUVChannel) {
|
||||||
if (IsNumeric(it)) {
|
if (IsNumeric(it)) {
|
||||||
map = strtoul10(&it);
|
map = strtoul10(&it);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue