Skip to content

Commit

Permalink
Max_Export_60: Fix conformance in For loop scope (#104).
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Jan 16, 2016
1 parent 33b6624 commit 5f20a71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/Max/Export/EditObjectExportLWO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bool CEditableObject::ExportLWO(LPCSTR fname)
F->close_chunk ();
}
// surfaces
for (s_it=m_Surfaces.begin(); s_it!=m_Surfaces.end(); s_it++){
for (SurfaceIt s_it=m_Surfaces.begin(); s_it!=m_Surfaces.end(); s_it++){
CSurface* S=*s_it;
int im_idx=FindLPCSTR(images,S->_Texture());
R_ASSERT(im_idx>=0);
Expand Down

0 comments on commit 5f20a71

Please sign in to comment.