Skip to content

Commit 5f20a71

Browse files
author
nitrocaster
committed
Max_Export_60: Fix conformance in For loop scope (#104).
1 parent 33b6624 commit 5f20a71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/Max/Export/EditObjectExportLWO.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ bool CEditableObject::ExportLWO(LPCSTR fname)
3737
F->close_chunk ();
3838
}
3939
// surfaces
40-
for (s_it=m_Surfaces.begin(); s_it!=m_Surfaces.end(); s_it++){
40+
for (SurfaceIt s_it=m_Surfaces.begin(); s_it!=m_Surfaces.end(); s_it++){
4141
CSurface* S=*s_it;
4242
int im_idx=FindLPCSTR(images,S->_Texture());
4343
R_ASSERT(im_idx>=0);

0 commit comments

Comments
 (0)