Compare commits

...

1 Commits

Author SHA1 Message Date
mailwl 36aa6b41fc Return RESULT_SUCCESS for unimplemented functions 2018-02-22 17:12:59 +03:00
+4
View File
@@ -116,6 +116,10 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
w << '}';
LOG_ERROR(Service, "unknown / unimplemented %s", w.c_str());
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
UNIMPLEMENTED();
}