mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-11 21:30:05 +00:00
Serialize CECD, CFG services
This commit is contained in:
parent
ef2e503281
commit
2d2c7218ef
23 changed files with 135 additions and 16 deletions
|
@ -260,6 +260,13 @@ private:
|
|||
*/
|
||||
std::unordered_map<ArchiveHandle, std::unique_ptr<ArchiveBackend>> handle_map;
|
||||
ArchiveHandle next_handle = 1;
|
||||
|
||||
template <class Archive>
|
||||
void serialize(Archive& ar, const unsigned int) {
|
||||
ar& id_code_map;
|
||||
ar& handle_map;
|
||||
ar& next_handle;
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Service::FS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue