diff options
| author | 2019-04-28 18:43:10 -0400 | |
|---|---|---|
| committer | 2019-09-30 17:20:49 -0400 | |
| commit | 943662dc3c59537d7c3e05b98cfc08212491ac87 (patch) | |
| tree | dbfd89f653458184fdc85735d8952db3e284e4bc | |
| parent | filesystem: Add getter for BCAT temporary directory (diff) | |
| download | yuzu-943662dc3c59537d7c3e05b98cfc08212491ac87.tar.gz yuzu-943662dc3c59537d7c3e05b98cfc08212491ac87.tar.xz yuzu-943662dc3c59537d7c3e05b98cfc08212491ac87.zip | |
applets: Add accessor for AppletFrontendSet
Allows other services to call applets without using LLE.
| -rw-r--r-- | src/core/hle/service/am/applets/applets.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/am/applets/applets.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applets/applets.cpp b/src/core/hle/service/am/applets/applets.cpp index d2e35362f..720fe766f 100644 --- a/src/core/hle/service/am/applets/applets.cpp +++ b/src/core/hle/service/am/applets/applets.cpp | |||
| @@ -157,6 +157,10 @@ AppletManager::AppletManager(Core::System& system_) : system{system_} {} | |||
| 157 | 157 | ||
| 158 | AppletManager::~AppletManager() = default; | 158 | AppletManager::~AppletManager() = default; |
| 159 | 159 | ||
| 160 | const AppletFrontendSet& AppletManager::GetAppletFrontendSet() const { | ||
| 161 | return frontend; | ||
| 162 | } | ||
| 163 | |||
| 160 | void AppletManager::SetAppletFrontendSet(AppletFrontendSet set) { | 164 | void AppletManager::SetAppletFrontendSet(AppletFrontendSet set) { |
| 161 | if (set.parental_controls != nullptr) | 165 | if (set.parental_controls != nullptr) |
| 162 | frontend.parental_controls = std::move(set.parental_controls); | 166 | frontend.parental_controls = std::move(set.parental_controls); |
diff --git a/src/core/hle/service/am/applets/applets.h b/src/core/hle/service/am/applets/applets.h index 764c3418c..226be88b1 100644 --- a/src/core/hle/service/am/applets/applets.h +++ b/src/core/hle/service/am/applets/applets.h | |||
| @@ -190,6 +190,8 @@ public: | |||
| 190 | explicit AppletManager(Core::System& system_); | 190 | explicit AppletManager(Core::System& system_); |
| 191 | ~AppletManager(); | 191 | ~AppletManager(); |
| 192 | 192 | ||
| 193 | const AppletFrontendSet& GetAppletFrontendSet() const; | ||
| 194 | |||
| 193 | void SetAppletFrontendSet(AppletFrontendSet set); | 195 | void SetAppletFrontendSet(AppletFrontendSet set); |
| 194 | void SetDefaultAppletFrontendSet(); | 196 | void SetDefaultAppletFrontendSet(); |
| 195 | void SetDefaultAppletsIfMissing(); | 197 | void SetDefaultAppletsIfMissing(); |