summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/library_applet_self_accessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/am/library_applet_self_accessor.h')
-rw-r--r--src/core/hle/service/am/library_applet_self_accessor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/library_applet_self_accessor.h b/src/core/hle/service/am/library_applet_self_accessor.h
index b15040539..596cea0df 100644
--- a/src/core/hle/service/am/library_applet_self_accessor.h
+++ b/src/core/hle/service/am/library_applet_self_accessor.h
@@ -10,7 +10,7 @@
namespace Service::AM {
-struct AppletStorageHolder;
+class AppletDataBroker;
struct Applet;
class ILibraryAppletSelfAccessor final : public ServiceFramework<ILibraryAppletSelfAccessor> {
@@ -34,7 +34,7 @@ private:
void ShouldSetGpuTimeSliceManually(HLERequestContext& ctx);
const std::shared_ptr<Applet> applet;
- const std::shared_ptr<AppletStorageHolder> storage;
+ const std::shared_ptr<AppletDataBroker> broker;
};
} // namespace Service::AM