summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-15 00:21:16 -0500
committerGitHub <noreply@github.com>2018-01-15 00:21:16 -0500
commitb1712b8312abd4457d217de1020da02e333f2244 (patch)
tree9bb866d9b059ea62b6174deb72c568a4533a1765 /src
parent92801b1c345f2aa47d0b89c91313b44c08edbb86 (diff)
parentf3264dd78d16459435a9bc38781faadca4387d2b (diff)
Merge pull request #14 from ogniK5377/master
Changed ICommonStateGetter::ReceiveMessage to allow further execution in games
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");
}