Fix order in IProfile

This commit is contained in:
Ac_K 2019-07-11 23:17:37 +02:00
commit 47d5490df0

View file

@ -52,6 +52,15 @@ namespace Ryujinx.HLE.HOS.Services.Acc
} }
[Command(10)] [Command(10)]
// GetImageSize() -> u32
private long GetImageSize(ServiceCtx context)
{
context.ResponseData.Write(_profilePictureStream.Length);
return 0;
}
[Command(11)]
// LoadImage() -> (u32, buffer<bytes, 6>) // LoadImage() -> (u32, buffer<bytes, 6>)
private long LoadImage(ServiceCtx context) private long LoadImage(ServiceCtx context)
{ {
@ -68,14 +77,5 @@ namespace Ryujinx.HLE.HOS.Services.Acc
return 0; return 0;
} }
[Command(11)]
// GetImageSize() -> u32
private long GetImageSize(ServiceCtx context)
{
context.ResponseData.Write(_profilePictureStream.Length);
return 0;
}
} }
} }