diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-02 19:04:20 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-02 19:04:20 -0400 |
commit | a6e76c0903e1f7f2f4f5b4a9fe0c399849a1a3d5 (patch) | |
tree | 8e280d850b4e2fb3556982963817eb015b5ea838 /src/core | |
parent | 15d0e982678d6151bb058fbb8ea0f39b7ffa688a (diff) | |
parent | 7e1b76d406b7d495a73d034f4342d78b265c6006 (diff) |
Merge pull request #1732 from wwylele/config00170000
add config block 0x00170000; remove duplicated content
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/cfg/cfg.cpp | 4 | ||||
-rw-r--r-- | src/core/hle/service/cfg/cfg.h | 13 |
2 files changed, 4 insertions, 13 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() { res = CreateConfigInfoBlk(0x000F0004, sizeof(CONSOLE_MODEL), 0xC, &CONSOLE_MODEL); if (!res.IsSuccess()) return res; + // 0x00170000 - Unknown + res = CreateConfigInfoBlk(0x00170000, 0x4, 0xE, zero_buffer); + if (!res.IsSuccess()) return res; + // Save the buffer to the file res = UpdateConfigNANDSavegame(); if (!res.IsSuccess()) diff --git a/src/core/hle/service/cfg/cfg.h b/src/core/hle/service/cfg/cfg.h index 606ab99cf..c01806836 100644 --- a/src/core/hle/service/cfg/cfg.h +++ b/src/core/hle/service/cfg/cfg.h @@ -98,19 +98,6 @@ void GetCountryCodeString(Service::Interface* self); void GetCountryCodeID(Service::Interface* self); /** - * CFG::GetConfigInfoBlk2 service function - * Inputs: - * 0 : 0x00010082 - * 1 : Size - * 2 : Block ID - * 3 : Descriptor for the output buffer - * 4 : Output buffer pointer - * Outputs: - * 1 : Result of function, 0 on success, otherwise error code - */ -void GetConfigInfoBlk2(Service::Interface* self); - -/** * CFG::SecureInfoGetRegion service function * Inputs: * 1 : None |