summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 767158444..01ddcdbd6 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -177,7 +177,8 @@ private:
177 void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) { 177 void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
178 LOG_DEBUG(Service_NIFM, "called"); 178 LOG_DEBUG(Service_NIFM, "called");
179 179
180 ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c, "NetworkProfileData is not the correct size"); 180 ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c,
181 "SfNetworkProfileData is not the correct size");
181 u128 uuid{}; 182 u128 uuid{};
182 auto buffer = ctx.ReadBuffer(); 183 auto buffer = ctx.ReadBuffer();
183 std::memcpy(&uuid, buffer.data() + 8, sizeof(u128)); 184 std::memcpy(&uuid, buffer.data() + 8, sizeof(u128));