diff options
| author | 2016-04-29 13:31:29 +0300 | |
|---|---|---|
| committer | 2016-04-29 13:31:29 +0300 | |
| commit | 84ade0713c118e48418c47a0919bd663950e87e0 (patch) | |
| tree | 731744eba78bfc6017555ae19dcf709ed958df5a /src | |
| parent | Common: Remove section measurement from profiler (#1731) (diff) | |
| download | yuzu-84ade0713c118e48418c47a0919bd663950e87e0.tar.gz yuzu-84ade0713c118e48418c47a0919bd663950e87e0.tar.xz yuzu-84ade0713c118e48418c47a0919bd663950e87e0.zip | |
add config block 0x00170000
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/cfg/cfg.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/cfg/cfg.cpp b/src/core/hle/service/cfg/cfg.cpp index 525432957..b9322c55d 100644 --- a/src/core/hle/service/cfg/cfg.cpp +++ b/src/core/hle/service/cfg/cfg.cpp | |||
| @@ -389,6 +389,10 @@ ResultCode FormatConfig() { | |||
| 389 | res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL); | 389 | res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL); |
| 390 | if (!res.IsSuccess()) return res; | 390 | if (!res.IsSuccess()) return res; |
| 391 | 391 | ||
| 392 | // 0x00170000 - Unknown | ||
| 393 | res = CreateConfigInfoBlk(0x00170000, 0x4, 0xE, zero_buffer); | ||
| 394 | if (!res.IsSuccess()) return res; | ||
| 395 | |||
| 392 | // Save the buffer to the file | 396 | // Save the buffer to the file |
| 393 | res = UpdateConfigNANDSavegame(); | 397 | res = UpdateConfigNANDSavegame(); |
| 394 | if (!res.IsSuccess()) | 398 | if (!res.IsSuccess()) |