summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar David Marcec2018-01-14 21:06:34 -0800
committerGravatar David Marcec2018-01-14 21:06:34 -0800
commitf3264dd78d16459435a9bc38781faadca4387d2b (patch)
tree0423cfea922bbe793c3bc6a3332a6701a9301831 /src
parentrenderer: Render previous frame when no new one is available. (diff)
downloadyuzu-f3264dd78d16459435a9bc38781faadca4387d2b.tar.gz
yuzu-f3264dd78d16459435a9bc38781faadca4387d2b.tar.xz
yuzu-f3264dd78d16459435a9bc38781faadca4387d2b.zip
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:
81 void ReceiveMessage(Kernel::HLERequestContext& ctx) { 81 void ReceiveMessage(Kernel::HLERequestContext& ctx) {
82 IPC::RequestBuilder rb{ctx, 3}; 82 IPC::RequestBuilder rb{ctx, 3};
83 rb.Push(RESULT_SUCCESS); 83 rb.Push(RESULT_SUCCESS);
84 rb.Push<u32>(1); 84 rb.Push<u32>(15);
85 85
86 LOG_WARNING(Service, "(STUBBED) called"); 86 LOG_WARNING(Service, "(STUBBED) called");
87 } 87 }