summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-03 23:31:34 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-09-14 22:39:52 +0200
commitbbf92a54e5f664bcf82121c3c0934731eb9baea9 (patch)
tree68312e59a115e2625e498869109f691baadc81a4 /src/core/hle
parentService/CFG: Correct flags in 2 default blocks (diff)
downloadyuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar.gz
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar.bz2
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar.lz
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar.xz
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.tar.zst
yuzu-bbf92a54e5f664bcf82121c3c0934731eb9baea9.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/cfg/cfg.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp
index 0c04a88ce..6f2cf0190 100644
--- a/src/core/hle/service/cfg/cfg.cpp
+++ b/src/core/hle/service/cfg/cfg.cpp
@@ -332,6 +332,12 @@ ResultCode FormatConfig() {
if (!res.IsSuccess()) return res;
res = CreateConfigInfoBlk(0x000A0000, sizeof(CONSOLE_USERNAME_BLOCK), 0xE, &CONSOLE_USERNAME_BLOCK);
if (!res.IsSuccess()) return res;
+
+ // 0x000A0001 - Profile birthday
+ const u8 profile_birthday[2] = {3, 25}; // March 25th, 2014
+ res = CreateConfigInfoBlk(0x000A0001, sizeof(profile_birthday), 0xE, profile_birthday);
+ if (!res.IsSuccess()) return res;
+
res = CreateConfigInfoBlk(0x000A0002, sizeof(CONSOLE_LANGUAGE), 0xE, &CONSOLE_LANGUAGE);
if (!res.IsSuccess()) return res;
res = CreateConfigInfoBlk(0x000B0000, sizeof(COUNTRY_INFO), 0xE, &COUNTRY_INFO);