Skip to content
Snippets Groups Projects
Commit e85308cd authored by Lioncash's avatar Lioncash
Browse files

set: Add missing log call in GetAvailableLanguageCodeCount()

Forgot to include this in 22f448b6
parent 7138b99f
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,8 @@ void SET::GetAvailableLanguageCodeCount(Kernel::HLERequestContext& ctx) { ...@@ -45,6 +45,8 @@ void SET::GetAvailableLanguageCodeCount(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 3}; IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.Push(static_cast<u32>(available_language_codes.size())); rb.Push(static_cast<u32>(available_language_codes.size()));
LOG_DEBUG(Service_SET, "called");
} }
SET::SET() : ServiceFramework("set") { SET::SET() : ServiceFramework("set") {
......
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