diff options
| author | JosJuice <josjuice@gmail.com> | 2020-03-26 10:37:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-26 10:37:33 +0100 |
| commit | 5988d20917b223430fc53180aa96922ceeaecfee (patch) | |
| tree | b05555b639299d4852d22ed69bb77dacd1fd1901 /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | 4b91185056e9f140c73567a3b54444443d25af2f (diff) | |
| parent | da223a2271289cca418eedb9d404c2e1c92e5e9d (diff) | |
Merge pull request #8698 from howard0su/warning_capture
Cleanup warnings of -Wunused-lambda-capture
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index c68ed147c2..5a298273d3 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -523,7 +523,7 @@ void TextureCacheBase::DoSaveState(PointerWrap& p) // Storing them would duplicate data in the save state file, adding to decompression time. return entry->IsCopy(); }; - auto AddCacheEntryToMap = [&entry_map, &entries_to_save, &p](TCacheEntry* entry) -> u32 { + auto AddCacheEntryToMap = [&entry_map, &entries_to_save](TCacheEntry* entry) -> u32 { auto iter = entry_map.find(entry); if (iter != entry_map.end()) return iter->second; |
