summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/mii_selector.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-05-07 23:21:48 +0200
committerbunnei <bunneidev@gmail.com>2016-05-07 23:21:48 +0200
commit8e9b33a34aab3f585d4855c2b69dbd76f1751be1 (patch)
treeef54db38e7727d403651a2857afb6e4f9c4f2872 /src/core/hle/applets/mii_selector.h
parentMerge pull request #1736 from MerryMage/sdl2-sink (diff)
parentHLE/Applets: Use the correct size for the framebuffer SharedMemory in the swkbd and MiiSelector applets. (diff)
downloadyuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar.gz
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar.bz2
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar.lz
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar.xz
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.tar.zst
yuzu-8e9b33a34aab3f585d4855c2b69dbd76f1751be1.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 c02dded4a..be6b04642 100644
--- a/src/core/hle/applets/mii_selector.h
+++ b/src/core/hle/applets/mii_selector.h
@@ -62,15 +62,15 @@ ASSERT_REG_POSITION(unk_6C, 0x6C);
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.