mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 22:56:52 +01:00
Merge pull request #8131 from lioncash/move
UICommon/ResourcePack/Manager: Resolve use-after-move in Add()
This commit is contained in:
commit
918d707f3f
@ -128,7 +128,7 @@ bool Add(const std::string& path, int offset)
|
|||||||
|
|
||||||
packs.insert(packs.begin() + offset, std::move(pack));
|
packs.insert(packs.begin() + offset, std::move(pack));
|
||||||
|
|
||||||
return pack.IsValid();
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Remove(ResourcePack& pack)
|
bool Remove(ResourcePack& pack)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user