summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-01-14 21:06:34 -0800
committerDavid Marcec <dmarcecguzman@gmail.com>2018-01-14 21:06:34 -0800
commitf3264dd78d16459435a9bc38781faadca4387d2b (patch)
tree0423cfea922bbe793c3bc6a3332a6701a9301831 /src
parentebd613c2ccfa770caa55bff9e6ca67eee7bca754 (diff)
Games expect 15 for ICommonStateGetter::ReceiveMessage in order to continue execution
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index e2bb581ff..f3d66ea96 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -81,7 +81,7 @@ private:
void ReceiveMessage(Kernel::HLERequestContext& ctx) {
IPC::RequestBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push<u32>(1);
+ rb.Push<u32>(15);
LOG_WARNING(Service, "(STUBBED) called");
}