mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
Merge pull request #8996 from AdmiralCurtiss/memcard-save-import-export-refactor
Various improvements for the Memory Card Manager.
This commit is contained in:
commit
9843412440
8 changed files with 834 additions and 476 deletions
|
@ -26,3 +26,12 @@ auto VariantCast(const std::variant<From...>& v)
|
|||
{
|
||||
return detail::VariantCastProxy<From...>{v};
|
||||
}
|
||||
|
||||
template <class... Ts>
|
||||
struct overloaded : Ts...
|
||||
{
|
||||
using Ts::operator()...;
|
||||
};
|
||||
|
||||
template <class... Ts>
|
||||
overloaded(Ts...) -> overloaded<Ts...>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue