From 1bdb67440bd5fd427bb16a51066a2809da20f2c8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 19 Jul 2018 19:50:27 -0400 Subject: [PATCH] pl_u: Simplify WriteBuffer() calls in GetSharedFontInOrderOfPriority() With the new overload, we can simply pass the container directly. --- src/core/hle/service/ns/pl_u.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/ns/pl_u.cpp b/src/core/hle/service/ns/pl_u.cpp index d4e0f615a9..691b1d106b 100644 --- a/src/core/hle/service/ns/pl_u.cpp +++ b/src/core/hle/service/ns/pl_u.cpp @@ -132,9 +132,9 @@ void PL_U::GetSharedFontInOrderOfPriority(Kernel::HLERequestContext& ctx) { font_sizes.push_back(SHARED_FONT_REGIONS[i].size); } - ctx.WriteBuffer(font_codes.data(), font_codes.size() * sizeof(u32), 0); - ctx.WriteBuffer(font_offsets.data(), font_offsets.size() * sizeof(u32), 1); - ctx.WriteBuffer(font_sizes.data(), font_sizes.size() * sizeof(u32), 2); + ctx.WriteBuffer(font_codes, 0); + ctx.WriteBuffer(font_offsets, 1); + ctx.WriteBuffer(font_sizes, 2); rb.Push(RESULT_SUCCESS); rb.Push(static_cast(LoadState::Done)); // Fonts Loaded