mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Use 'contains' method
This commit is contained in:
parent
18ac8bf405
commit
9fa4eb9aab
9 changed files with 12 additions and 14 deletions
|
@ -290,7 +290,7 @@ void ShaderCache::LoadPipelineCache(T& cache, Common::LinearDiskCache<DiskKeyTyp
|
|||
UnserializePipelineUid(key, real_uid);
|
||||
|
||||
// Skip those which are already compiled.
|
||||
if (failed || cache.find(real_uid) != cache.end())
|
||||
if (failed || cache.contains(real_uid))
|
||||
return;
|
||||
|
||||
auto config = this_ptr->GetGXPipelineConfig(real_uid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue