diff --git a/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs b/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs index b5949dfbb4..6a34606855 100644 --- a/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs +++ b/Ryujinx.HLE/HOS/Services/Acc/IProfile.cs @@ -52,6 +52,15 @@ namespace Ryujinx.HLE.HOS.Services.Acc } [Command(10)] + // GetImageSize() -> u32 + private long GetImageSize(ServiceCtx context) + { + context.ResponseData.Write(_profilePictureStream.Length); + + return 0; + } + + [Command(11)] // LoadImage() -> (u32, buffer) private long LoadImage(ServiceCtx context) { @@ -68,14 +77,5 @@ namespace Ryujinx.HLE.HOS.Services.Acc return 0; } - - [Command(11)] - // GetImageSize() -> u32 - private long GetImageSize(ServiceCtx context) - { - context.ResponseData.Write(_profilePictureStream.Length); - - return 0; - } } } \ No newline at end of file