Set accepted EULA version to maximum

This commit is contained in:
mailwl 2016-04-12 21:07:03 +03:00
parent db0db6a182
commit dc1a7b59c4

View file

@ -383,7 +383,8 @@ ResultCode FormatConfig() {
if (!res.IsSuccess()) return res; if (!res.IsSuccess()) return res;
// 0x000D0000 - Accepted EULA version // 0x000D0000 - Accepted EULA version
res = CreateConfigInfoBlk(0x000D0000, 0x4, 0xE, zero_buffer); u32 eula_version = 0xFFFF; // max possible EULA version
res = CreateConfigInfoBlk(0x000D0000, 0x4, 0xE, &eula_version);
if (!res.IsSuccess()) return res; if (!res.IsSuccess()) return res;
res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL); res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL);