summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nifm/nifm.cpp
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-05-21 10:23:53 +0200
committerGitHub <noreply@github.com>2020-05-21 10:23:53 +0200
commit235805edf30475131299fe6a1c3fd772cd6dba98 (patch)
tree2662ece11dd0cdc29b08328e7f8ac02126654358 /src/core/hle/service/nifm/nifm.cpp
parentMerge pull request #3946 from ogniK5377/sysverdat-10-0-2 (diff)
downloadyuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar.gz
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar.bz2
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar.lz
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar.xz
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.tar.zst
yuzu-235805edf30475131299fe6a1c3fd772cd6dba98.zip
Diffstat (limited to 'src/core/hle/service/nifm/nifm.cpp')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 767158444..aa6fbf67f 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -177,7 +177,7 @@ 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));