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:
parent
bbaefe88d5
commit
295ab058a5
1 changed files with 2 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue