mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-15 22:07:48 +00:00
Games expect 15 for ICommonStateGetter::ReceiveMessage in order to continue execution
This commit is contained in:
parent
f0bccde0a0
commit
8e6ff4bd7b
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ private:
|
||||||
void ReceiveMessage(Kernel::HLERequestContext& ctx) {
|
void ReceiveMessage(Kernel::HLERequestContext& ctx) {
|
||||||
IPC::RequestBuilder rb{ctx, 3};
|
IPC::RequestBuilder rb{ctx, 3};
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
rb.Push<u32>(1);
|
rb.Push<u32>(15);
|
||||||
|
|
||||||
LOG_WARNING(Service, "(STUBBED) called");
|
LOG_WARNING(Service, "(STUBBED) called");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue