Skip to content
Snippets Groups Projects
Commit 0335d4a4 authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Removed some signed/unsigned mismatch warnings.

parent ec3bc2ee
No related branches found
No related tags found
No related merge requests found
......@@ -200,11 +200,11 @@ vector<blk_ref> ReadNifList( istream & in ) {
uint len;
ReadUInt( in );
len = ReadByte( in );
for (int i = 0; i < len; i++) ReadByte( in );
for (uint i = 0; i < len; i++) ReadByte( in );
len = ReadByte( in );
for (int i = 0; i < len; i++) ReadByte( in );
for (uint i = 0; i < len; i++) ReadByte( in );
len = ReadByte( in );
for (int i = 0; i < len; i++) ReadByte( in );
for (uint i = 0; i < len; i++) ReadByte( in );
}
vector<string> blockTypes;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment