mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 06:39:57 +00:00
settings: Store list of disabled add-ons per title ID
This commit is contained in:
parent
76525013c0
commit
282b7e902c
1 changed files with 5 additions and 0 deletions
|
@ -6,8 +6,10 @@
|
|||
|
||||
#include <array>
|
||||
#include <atomic>
|
||||
#include <map>
|
||||
#include <optional>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "common/common_types.h"
|
||||
|
||||
namespace Settings {
|
||||
|
@ -411,6 +413,9 @@ struct Values {
|
|||
std::string web_api_url;
|
||||
std::string yuzu_username;
|
||||
std::string yuzu_token;
|
||||
|
||||
// Add-Ons
|
||||
std::map<u64, std::vector<std::string>> disabled_addons;
|
||||
} extern values;
|
||||
|
||||
void Apply();
|
||||
|
|
Loading…
Reference in a new issue