summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-08-03 13:28:54 +0200
committerGitHub <noreply@github.com>2020-08-03 13:28:54 +0200
commit9b75481755c8d566bc666465d659115bba2b2578 (patch)
tree309d0ff37c8e68d178b65861abeb3bb0e8387f43 /src/core/hle/service/acc
parentMerge pull request #4263 from lat9nq/fix-screencaps-2 (diff)
downloadyuzu-9b75481755c8d566bc666465d659115bba2b2578.tar
yuzu-9b75481755c8d566bc666465d659115bba2b2578.tar.gz
yuzu-9b75481755c8d566bc666465d659115bba2b2578.tar.bz2
yuzu-9b75481755c8d566bc666465d659115bba2b2578.tar.lz
yuzu-9b75481755c8d566bc666465d659115bba2b2578.tar.xz
yuzu-9b75481755c8d566bc666465d659115bba2b2578.tar.zst
yuzu-9b75481755c8d566bc666465d659115bba2b2578.zip
Diffstat (limited to 'src/core/hle/service/acc')
-rw-r--r--src/core/hle/service/acc/acc.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 8ac856ec3..63e4aeca0 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -286,9 +286,7 @@ protected:
ProfileBase profile_base{};
ProfileData data{};
if (profile_manager.GetProfileBaseAndData(user_id, profile_base, data)) {
- std::array<u8, sizeof(ProfileData)> raw_data;
- std::memcpy(raw_data.data(), &data, sizeof(ProfileData));
- ctx.WriteBuffer(raw_data);
+ ctx.WriteBuffer(data);
IPC::ResponseBuilder rb{ctx, 16};
rb.Push(RESULT_SUCCESS);
rb.PushRaw(profile_base);
@@ -333,7 +331,7 @@ protected:
std::vector<u8> buffer(size);
image.ReadBytes(buffer.data(), buffer.size());
- ctx.WriteBuffer(buffer.data(), buffer.size());
+ ctx.WriteBuffer(buffer);
rb.Push<u32>(size);
}