PatchEngine: Make use of std::erase

This commit is contained in:
Lioncash 2023-12-12 13:30:08 -05:00
parent e69ac2d43e
commit 01d15994fe

View File

@ -325,8 +325,7 @@ void AddMemoryPatch(std::size_t index)
void RemoveMemoryPatch(std::size_t index)
{
std::lock_guard lock(s_on_frame_memory_mutex);
s_on_frame_memory.erase(std::remove(s_on_frame_memory.begin(), s_on_frame_memory.end(), index),
s_on_frame_memory.end());
std::erase(s_on_frame_memory, index);
}
bool ApplyFramePatches()