From 7222ce78ff6a76e984b43ba8a2e81cb457b63d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Fri, 16 Jun 2017 22:38:08 +0200 Subject: [PATCH] SysConf: Don't set "config done" flags by default This allows the user to go through the Wii Menu first boot setup screen when they launch the System Menu for the first time. Most useful on a clean profile, after doing a full system update, to configure settings like the console country. --- Source/Core/Common/SysConf.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/SysConf.cpp b/Source/Core/Common/SysConf.cpp index 44c0603dd5..2a96feeea0 100644 --- a/Source/Core/Common/SysConf.cpp +++ b/Source/Core/Common/SysConf.cpp @@ -297,8 +297,8 @@ void SysConf::InsertDefaultEntries() AddEntry({Entry::Type::Byte, "IPL.AR", {1}}); AddEntry({Entry::Type::Byte, "IPL.SSV", {1}}); - AddEntry({Entry::Type::ByteBool, "IPL.CD", {1}}); - AddEntry({Entry::Type::ByteBool, "IPL.CD2", {1}}); + AddEntry({Entry::Type::ByteBool, "IPL.CD", {0}}); + AddEntry({Entry::Type::ByteBool, "IPL.CD2", {0}}); AddEntry({Entry::Type::ByteBool, "IPL.EULA", {1}}); AddEntry({Entry::Type::Byte, "IPL.UPT", {2}}); AddEntry({Entry::Type::Byte, "IPL.PGS", {0}});