mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 11:35:46 +00:00
set: Add missing log call in GetAvailableLanguageCodeCount()
Forgot to include this in 2c22e4be19
This commit is contained in:
parent
112b7d1ee6
commit
f53d6ee0bc
1 changed files with 2 additions and 0 deletions
|
@ -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") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue