Skip to content
Snippets Groups Projects
Commit 545e6919 authored by bunnei's avatar bunnei
Browse files

service: added additional hack to return success on unimplemented service calls

parent b08b3c15
No related branches found
No related tags found
No related merge requests found
......@@ -87,12 +87,20 @@ public:
if (itr == m_functions.end()) {
ERROR_LOG(OSHLE, "Unknown/unimplemented function: port = %s, command = 0x%08X!",
GetPortName(), cmd_buff[0]);
return 0; // TODO(bunnei): Hack - ignore error
// TODO(bunnei): Hack - ignore error
u32* cmd_buff = Service::GetCommandBuffer();
cmd_buff[1] = 0;
return 0;
}
if (itr->second.func == NULL) {
ERROR_LOG(OSHLE, "Unimplemented function: port = %s, name = %s!",
GetPortName(), itr->second.name.c_str());
return 0; // TODO(bunnei): Hack - ignore error
// TODO(bunnei): Hack - ignore error
u32* cmd_buff = Service::GetCommandBuffer();
cmd_buff[1] = 0;
return 0;
}
itr->second.func(this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment