diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-28 13:59:40 -0500 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-03 17:20:34 -0500 |
commit | 282b7e902ce9992eaa60d2c259284f83751beaaa (patch) | |
tree | 55811502a5eef0d7b623eb50236895d8f71d5b93 /src | |
parent | 76525013c0094f5b797abc374769144a19d9c51b (diff) |
settings: Store list of disabled add-ons per title ID
Diffstat (limited to 'src')
-rw-r--r-- | src/core/settings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index a0c5fd4474..de01b05c0a 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -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(); |