mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Some warnings fixed
This commit is contained in:
parent
3269c88d02
commit
fb1d7d3982
21 changed files with 65 additions and 65 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue