mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:19:59 +00:00
Merge pull request #3970 from VolcaEM/patch-1
nifm: correct assert string in CreateTemporaryNetworkProfile
This commit is contained in:
commit
1306608b2a
1 changed files with 2 additions and 1 deletions
|
@ -177,7 +177,8 @@ private:
|
||||||
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
|
void CreateTemporaryNetworkProfile(Kernel::HLERequestContext& ctx) {
|
||||||
LOG_DEBUG(Service_NIFM, "called");
|
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{};
|
u128 uuid{};
|
||||||
auto buffer = ctx.ReadBuffer();
|
auto buffer = ctx.ReadBuffer();
|
||||||
std::memcpy(&uuid, buffer.data() + 8, sizeof(u128));
|
std::memcpy(&uuid, buffer.data() + 8, sizeof(u128));
|
||||||
|
|
Loading…
Reference in a new issue