From 25a42dd087c26b5fb0fcc8f0318ff788027c3327 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 8 Aug 2023 17:13:14 +0300 Subject: [PATCH] [CFG] Add Miiverse access key --- src/core/services/cfg.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/services/cfg.cpp b/src/core/services/cfg.cpp index 6925e3d8..d7861a61 100644 --- a/src/core/services/cfg.cpp +++ b/src/core/services/cfg.cpp @@ -115,6 +115,8 @@ void CFGService::getConfigInfoBlk2(u32 messagePointer) { for (u32 i = 0; i < size; i += 4) { mem.write32(output + i, 0); } + } else if (size == 4 && blockID == 0x170000) { // Miiverse access key + mem.write32(output, 0); } else { Helpers::panic("Unhandled GetConfigInfoBlk2 configuration. Size = %d, block = %X", size, blockID); }