Merge pull request #3826 from Steveice10/master

boss: Return buff_size in parameter 2 of ReceiveProperty.
This commit is contained in:
James Rowe 2018-06-09 13:34:03 -06:00 committed by GitHub
commit a5cf5b56bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -404,7 +404,7 @@ void ReceiveProperty(Service::Interface* self) {
cmd_buff[0] = IPC::MakeHeader(0x16, 0x2, 0x2);
cmd_buff[1] = RESULT_SUCCESS.raw;
cmd_buff[2] = 0; // stub 0 (32 bit value)
cmd_buff[2] = buff_size; // Should be actual number of read bytes.
cmd_buff[3] = (buff_size << 4 | 0xC);
cmd_buff[4] = buff_addr;