mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 12:57:49 +00:00
settings_common: Use a vector in category linkage
Improve storage requirements.
This commit is contained in:
parent
093b0c051d
commit
1067bbf7b7
2 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ class Linkage {
|
|||
public:
|
||||
explicit Linkage(u32 initial_count = 0);
|
||||
~Linkage();
|
||||
std::map<Category, std::forward_list<BasicSetting*>> by_category{};
|
||||
std::map<Category, std::vector<BasicSetting*>> by_category{};
|
||||
std::vector<std::function<void()>> restore_functions{};
|
||||
u32 count;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue