diff options
| author | bunnei <bunneidev@gmail.com> | 2016-05-24 17:19:26 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2016-05-24 17:19:26 -0400 |
| commit | 2e5e7d9be0b8caa8ba7ecfde66bde2ca1aac97c8 (patch) | |
| tree | 1ff05e9db556f8d90ddbbced8224c0287a5bf272 /src/core/hle/service/ptm/ptm_sysm.cpp | |
| parent | a316fbb15aedbc23b58474aaca95569788933774 (diff) | |
| parent | 7129611e65096ba2cbe8266f6cb068a9b18981d8 (diff) | |
Merge pull request #1520 from JamePeng/checknew3ds
Implement CheckNew3DS and CheckNew3DSApp
Diffstat (limited to 'src/core/hle/service/ptm/ptm_sysm.cpp')
| -rw-r--r-- | src/core/hle/service/ptm/ptm_sysm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ptm/ptm_sysm.cpp b/src/core/hle/service/ptm/ptm_sysm.cpp index fe76dd108..cc4ef1101 100644 --- a/src/core/hle/service/ptm/ptm_sysm.cpp +++ b/src/core/hle/service/ptm/ptm_sysm.cpp @@ -18,7 +18,7 @@ const Interface::FunctionInfo FunctionTable[] = { {0x040700C0, nullptr, "ShutdownAsync"}, {0x04080000, nullptr, "Awake"}, {0x04090080, nullptr, "RebootAsync"}, - {0x040A0000, nullptr, "CheckNew3DS"}, + {0x040A0000, CheckNew3DS, "CheckNew3DS"}, {0x08010640, nullptr, "SetInfoLEDPattern"}, {0x08020040, nullptr, "SetInfoLEDPatternHeader"}, {0x08030000, nullptr, "GetInfoLEDStatus"}, @@ -35,7 +35,7 @@ const Interface::FunctionInfo FunctionTable[] = { {0x080E0140, nullptr, "NotifyPlayEvent"}, {0x080F0000, IsLegacyPowerOff, "IsLegacyPowerOff"}, {0x08100000, nullptr, "ClearLegacyPowerOff"}, - {0x08110000, nullptr, "GetShellStatus"}, + {0x08110000, GetShellState, "GetShellState"}, {0x08120000, nullptr, "IsShutdownByBatteryEmpty"}, {0x08130000, nullptr, "FormatSavedata"}, {0x08140000, nullptr, "GetLegacyJumpProhibitedFlag"}, |
