mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 22:38:34 +00:00
Modernize std::find
with ranges
This commit is contained in:
parent
b5f7a50874
commit
6ca7e2856b
7 changed files with 10 additions and 10 deletions
|
@ -2814,7 +2814,7 @@ TextureCacheBase::InvalidateTexture(TexAddrCache::iterator iter, bool discard_pe
|
|||
// Xenoblade's sunset scene, where 35 copies are done per frame, and 25 of them are
|
||||
// copied to the same address, and can be skipped.
|
||||
ReleaseEFBCopyStagingTexture(std::move(entry->pending_efb_copy));
|
||||
auto pending_it = std::find(m_pending_efb_copies.begin(), m_pending_efb_copies.end(), entry);
|
||||
auto pending_it = std::ranges::find(m_pending_efb_copies, entry);
|
||||
if (pending_it != m_pending_efb_copies.end())
|
||||
m_pending_efb_copies.erase(pending_it);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue