diff options
| author | 2018-11-28 13:59:40 -0500 | |
|---|---|---|
| committer | 2018-12-03 17:20:34 -0500 | |
| commit | 282b7e902ce9992eaa60d2c259284f83751beaaa (patch) | |
| tree | 55811502a5eef0d7b623eb50236895d8f71d5b93 /src | |
| parent | Merge pull request #1842 from lioncash/slot (diff) | |
| download | yuzu-282b7e902ce9992eaa60d2c259284f83751beaaa.tar.gz yuzu-282b7e902ce9992eaa60d2c259284f83751beaaa.tar.xz yuzu-282b7e902ce9992eaa60d2c259284f83751beaaa.zip | |
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 a0c5fd447..de01b05c0 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -6,8 +6,10 @@ | |||
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <atomic> | 8 | #include <atomic> |
| 9 | #include <map> | ||
| 9 | #include <optional> | 10 | #include <optional> |
| 10 | #include <string> | 11 | #include <string> |
| 12 | #include <vector> | ||
| 11 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 12 | 14 | ||
| 13 | namespace Settings { | 15 | namespace Settings { |
| @@ -411,6 +413,9 @@ struct Values { | |||
| 411 | std::string web_api_url; | 413 | std::string web_api_url; |
| 412 | std::string yuzu_username; | 414 | std::string yuzu_username; |
| 413 | std::string yuzu_token; | 415 | std::string yuzu_token; |
| 416 | |||
| 417 | // Add-Ons | ||
| 418 | std::map<u64, std::vector<std::string>> disabled_addons; | ||
| 414 | } extern values; | 419 | } extern values; |
| 415 | 420 | ||
| 416 | void Apply(); | 421 | void Apply(); |