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.
This commit is contained in:
Léo Lam 2017-06-16 22:38:08 +02:00
parent 5072f4e5c3
commit 7222ce78ff
1 changed files with 2 additions and 2 deletions

View File

@ -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}});