summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-05-22 05:46:42 +0200
committerGitHub <noreply@github.com>2020-05-22 05:46:42 +0200
commit1306608b2afeb28c9d2db36181fed40b29e90b66 (patch)
tree1f166d54f63c08b1e6481a6a163edef2539a03f8
parentMerge pull request #3946 from ogniK5377/sysverdat-10-0-2 (diff)
parentclang-format (diff)
downloadyuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar.gz
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar.bz2
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar.lz
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar.xz
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.tar.zst
yuzu-1306608b2afeb28c9d2db36181fed40b29e90b66.zip
-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:
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_NIFM, "called");
- ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c, "NetworkProfileData is not the correct size");
+ ASSERT_MSG(ctx.GetReadBufferSize() == 0x17c,
+ "SfNetworkProfileData is not the correct size");
u128 uuid{};
auto buffer = ctx.ReadBuffer();
std::memcpy(&uuid, buffer.data() + 8, sizeof(u128));