MODIFIED: #1471 Incompatible / unincrementable iterators assert will no longer be hit in debug mode with M$ STL when updating the interface anims.

This commit is contained in:
dfighter1985 2012-11-22 22:57:37 +01:00
parent bbaefe88d5
commit 295ab058a5

View file

@ -3072,9 +3072,8 @@ namespace NLGUI
void CWidgetManager::updateAnims()
{
std::vector< CInterfaceAnim* >::iterator itr;
for( itr = activeAnims.begin(); itr != activeAnims.end(); ++itr )
(*itr)->update();
for( std::vector< CInterfaceAnim* >::size_type i = 0; i < activeAnims.size(); i++ )
activeAnims[ i ]->update();
}