fixed more warnings.

This commit is contained in:
Christoph Oelckers 2023-12-10 15:26:46 +01:00
commit aaea3d52aa
4 changed files with 6 additions and 6 deletions

View file

@ -137,7 +137,7 @@ bool IQMModel::Load(const char* path, int lumpnum, const char* buffer, int lengt
}
reader.SeekTo(ofs_anims);
for(int i = 0; i < Anims.Size(); i++)
for(unsigned i = 0; i < Anims.Size(); i++)
{
IQMAnim& anim = Anims[i];
anim.Name = reader.ReadName(text);