From e311398a2202a174541144aeaa297752fab4d79b Mon Sep 17 00:00:00 2001 From: mailwl Date: Sun, 24 Apr 2016 12:39:06 +0300 Subject: Layout Mii parameters input/output, and return success as result of applet work --- src/core/hle/applets/mii_selector.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/core/hle/applets/mii_selector.cpp') diff --git a/src/core/hle/applets/mii_selector.cpp b/src/core/hle/applets/mii_selector.cpp index 708d2f630..5191c821d 100644 --- a/src/core/hle/applets/mii_selector.cpp +++ b/src/core/hle/applets/mii_selector.cpp @@ -55,6 +55,11 @@ ResultCode MiiSelector::StartImpl(const Service::APT::AppletStartupParameter& pa // TODO(Subv): Set the expected fields in the response buffer before resending it to the application. // TODO(Subv): Reverse the parameter format for the Mii Selector + if(parameter.buffer_size >= sizeof(u32)) { + // TODO: defaults return no error, but garbage in other unknown fields + memset(parameter.data, 0, sizeof(u32)); + } + // Let the application know that we're closing Service::APT::MessageParameter message; message.buffer_size = parameter.buffer_size; -- cgit v1.2.3