set: GetAvailableLanguageCodes should not return lang_codes size.
This commit is contained in:
		| @@ -13,16 +13,17 @@ namespace Service { | ||||
| namespace Set { | ||||
|  | ||||
| void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) { | ||||
|     IPC::RequestParser rp{ctx}; | ||||
|     u32 id = rp.Pop<u32>(); | ||||
|     constexpr std::array<u8, 13> lang_codes{}; | ||||
|  | ||||
|     const auto& output_buffer = ctx.BufferDescriptorC()[0]; | ||||
|  | ||||
|     Memory::WriteBlock(output_buffer.Address(), lang_codes.data(), lang_codes.size()); | ||||
|  | ||||
|     IPC::ResponseBuilder rb{ctx, 4}; | ||||
|     IPC::ResponseBuilder rb{ctx, 2}; | ||||
|  | ||||
|     rb.Push(RESULT_SUCCESS); | ||||
|     rb.Push(static_cast<u64>(lang_codes.size())); | ||||
|  | ||||
|     LOG_WARNING(Service_SET, "(STUBBED) called"); | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user