Fix order in IProfile
This commit is contained in:
parent
7f8199d0a4
commit
47d5490df0
1 changed files with 9 additions and 9 deletions
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue