diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2017-06-16 22:38:08 +0200 |
|---|---|---|
| committer | Léo Lam <leo@innovatetechnologi.es> | 2017-06-18 22:32:56 +0200 |
| commit | 7222ce78ff6a76e984b43ba8a2e81cb457b63d77 (patch) | |
| tree | 411366fdda4a4afcd726c3ef2bc32e1ef8e2ebd2 /Source/Core/Common/SysConf.cpp | |
| parent | 5072f4e5c39c9a27f2752c74782d49edf37794c2 (diff) | |
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.
Diffstat (limited to 'Source/Core/Common/SysConf.cpp')
| -rw-r--r-- | Source/Core/Common/SysConf.cpp | 4 |
1 files 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}}); |
