mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 16:29:55 +00:00
Don't warn about NiFlipController (already implemented)
This commit is contained in:
parent
764ec9bc5f
commit
86b2211932
1 changed files with 2 additions and 1 deletions
|
@ -152,7 +152,8 @@ Ogre::String NIFMaterialLoader::getMaterial(const Nif::ShapeData *shapedata,
|
|||
Nif::ControllerPtr ctrls = texprop->controller;
|
||||
while(!ctrls.empty())
|
||||
{
|
||||
warn("Unhandled texture controller "+ctrls->recName+" in "+name);
|
||||
if (ctrls->recType != Nif::RC_NiFlipController) // Handled in ogrenifloader
|
||||
warn("Unhandled texture controller "+ctrls->recName+" in "+name);
|
||||
ctrls = ctrls->next;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue