summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/mii_selector.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-05-05 19:36:07 +0200
committerSubv <subv2112@gmail.com>2016-05-07 17:01:40 +0200
commit6970b7d3d511194d3b229358375c528b0136e82c (patch)
tree02685af986ae1adf6e0de3e17dae67dc0fb367ed /src/core/hle/applets/mii_selector.h
parentMerge pull request #1754 from JayFoxRox/fix-const_color-revert (diff)
downloadyuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar.gz
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar.bz2
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar.lz
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar.xz
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.tar.zst
yuzu-6970b7d3d511194d3b229358375c528b0136e82c.zip
Diffstat (limited to 'src/core/hle/applets/mii_selector.h')
-rw-r--r--src/core/hle/applets/mii_selector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/applets/mii_selector.h b/src/core/hle/applets/mii_selector.h
index 6a3e7c8eb..5619f8399 100644
--- a/src/core/hle/applets/mii_selector.h
+++ b/src/core/hle/applets/mii_selector.h
@@ -18,15 +18,15 @@ namespace Applets {
class MiiSelector final : public Applet {
public:
- MiiSelector(Service::APT::AppletId id);
+ MiiSelector(Service::APT::AppletId id) : Applet(id), started(false) { }
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
void Update() override;
bool IsRunning() const override { return started; }
- /// TODO(Subv): Find out what this is actually used for.
- /// It is believed that the application stores the current screen image here.
+ /// This SharedMemory will be created when we receive the LibAppJustStarted message.
+ /// It holds the framebuffer info retrieved by the application with GSPGPU::ImportDisplayCaptureInfo
Kernel::SharedPtr<Kernel::SharedMemory> framebuffer_memory;
/// Whether this applet is currently running instead of the host application or not.