removed harmless gcc warnings (unsigned vs signed int)

This commit is contained in:
Paolo Cignoni 2010-06-23 14:26:52 +00:00
parent f7efa76f35
commit bc23a049bd
1 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ namespace io {
//saves texture coord x wedge
if(HasPerWedgeTexCoord(m) && (mask & Mask::IOM_WEDGTEXCOORD))
for(unsigned int k=0;k<(*fi).VN();k++)
for(int k=0;k<(*fi).VN();k++)
{
{
if(AddNewTextureCoord(CoordIndexTexture,(*fi).WT(k),curTexCoordIndex))
@ -226,7 +226,7 @@ namespace io {
fprintf(fp,"f ");
for(unsigned int k=0;k<(*fi).VN();k++)
for(int k=0;k<(*fi).VN();k++)
{
if(k!=0) fprintf(fp," ");
int vInd = -1;