Set accepted EULA version to maximum
This commit is contained in:
parent
db0db6a182
commit
dc1a7b59c4
1 changed files with 2 additions and 1 deletions
|
@ -383,7 +383,8 @@ ResultCode FormatConfig() {
|
|||
if (!res.IsSuccess()) return res;
|
||||
|
||||
// 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;
|
||||
|
||||
res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL);
|
||||
|
|
Loading…
Reference in a new issue