From 7953cc13aa07a39cc415ad73593366db7cb496dc Mon Sep 17 00:00:00 2001 From: Nomi Date: Tue, 26 Sep 2023 02:02:35 +0200 Subject: [PATCH] Skip system setup --- src/core/services/cfg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/services/cfg.cpp b/src/core/services/cfg.cpp index 06b28322..46938e50 100644 --- a/src/core/services/cfg.cpp +++ b/src/core/services/cfg.cpp @@ -163,7 +163,7 @@ void CFGService::getConfigInfo(u32 output, u32 blockID, u32 size, u32 permission } else if (size == 8 && blockID == 0x00090000) { mem.write64(output, 0); // Some sort of key used with nwm::UDS::InitializeWithVersion } else if (size == 4 && blockID == 0x110000) { - mem.write32(output, 0); // According to 3Dbrew, 0 means system setup is required + mem.write32(output, 1); // According to 3Dbrew, 0 means system setup is required } else if (size == 2 && blockID == 0x50001) { // Backlight controls. Values taken from Citra mem.write8(output, 0);