mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Resolve [-Wshadow]
This commit is contained in:
parent
0a88c2329a
commit
1312624e05
2 changed files with 3 additions and 5 deletions
|
@ -656,8 +656,8 @@ void TextureCacheBase::DoSaveState(PointerWrap& p)
|
|||
}
|
||||
|
||||
auto doList = [&p](auto list) {
|
||||
u32 size = static_cast<u32>(list.size());
|
||||
p.Do(size);
|
||||
u32 list_size = static_cast<u32>(list.size());
|
||||
p.Do(list_size);
|
||||
for (const auto& it : list)
|
||||
{
|
||||
p.Do(it.first);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue