diff options
| author | shuffle2 <godisgovernment@gmail.com> | 2017-06-18 13:39:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-18 13:39:49 -0700 |
| commit | 9970aceefa54572cdd3cec3e34941c8288448e64 (patch) | |
| tree | 411366fdda4a4afcd726c3ef2bc32e1ef8e2ebd2 /Source/Core | |
| parent | 5072f4e5c39c9a27f2752c74782d49edf37794c2 (diff) | |
| parent | 7222ce78ff6a76e984b43ba8a2e81cb457b63d77 (diff) | |
Merge pull request #5629 from leoetlino/first-time-setup
SysConf: Don't set "config done" flags by default
Diffstat (limited to 'Source/Core')
| -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}}); |
