Some warnings fixed

This commit is contained in:
Nekotekina 2014-08-30 22:35:18 +04:00
parent 3269c88d02
commit fb1d7d3982
21 changed files with 65 additions and 65 deletions

View file

@ -328,8 +328,8 @@ void VFS::SaveLoadDevices(std::vector<VFSManagerEntry>& res, bool is_load)
}
else
{
count = res.size();
entries_count.SaveValue(res.size());
count = (int)res.size();
entries_count.SaveValue(count);
}
for(int i=0; i<count; ++i)