diff options
| author | 2018-01-15 00:21:16 -0500 | |
|---|---|---|
| committer | 2018-01-15 00:21:16 -0500 | |
| commit | b1712b8312abd4457d217de1020da02e333f2244 (patch) | |
| tree | 9bb866d9b059ea62b6174deb72c568a4533a1765 | |
| parent | renderer_gl: Clear screen to black before rendering framebuffer. (diff) | |
| parent | Games expect 15 for ICommonStateGetter::ReceiveMessage in order to continue e... (diff) | |
| download | yuzu-b1712b8312abd4457d217de1020da02e333f2244.tar.gz yuzu-b1712b8312abd4457d217de1020da02e333f2244.tar.xz yuzu-b1712b8312abd4457d217de1020da02e333f2244.zip | |
Merge pull request #14 from ogniK5377/master
Changed ICommonStateGetter::ReceiveMessage to allow further execution in games
| -rw-r--r-- | src/core/hle/service/am/applet_oe.cpp | 2 |
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 | } |