diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/mii/mii.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/set/set.cpp | 1 | ||||
| -rw-r--r-- | src/core/hle/service/set/set_sys.cpp | 2 |
5 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index d7a81f64a..2ce742e35 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -1201,6 +1201,8 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_) | |||
| 1201 | {151, nullptr, "TryPopFromNotificationStorageChannel"}, | 1201 | {151, nullptr, "TryPopFromNotificationStorageChannel"}, |
| 1202 | {160, nullptr, "GetHealthWarningDisappearedSystemEvent"}, | 1202 | {160, nullptr, "GetHealthWarningDisappearedSystemEvent"}, |
| 1203 | {170, nullptr, "SetHdcpAuthenticationActivated"}, | 1203 | {170, nullptr, "SetHdcpAuthenticationActivated"}, |
| 1204 | {180, nullptr, "GetLaunchRequiredVersion"}, | ||
| 1205 | {181, nullptr, "UpgradeLaunchRequiredVersion"}, | ||
| 1204 | {500, nullptr, "StartContinuousRecordingFlushForDebug"}, | 1206 | {500, nullptr, "StartContinuousRecordingFlushForDebug"}, |
| 1205 | {1000, nullptr, "CreateMovieMaker"}, | 1207 | {1000, nullptr, "CreateMovieMaker"}, |
| 1206 | {1001, nullptr, "PrepareForJit"}, | 1208 | {1001, nullptr, "PrepareForJit"}, |
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 8918946a1..50f709b25 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp | |||
| @@ -260,7 +260,7 @@ Hid::Hid(Core::System& system) : ServiceFramework("hid"), system(system) { | |||
| 260 | {404, nullptr, "HasLeftRightBattery"}, | 260 | {404, nullptr, "HasLeftRightBattery"}, |
| 261 | {405, nullptr, "GetNpadInterfaceType"}, | 261 | {405, nullptr, "GetNpadInterfaceType"}, |
| 262 | {406, nullptr, "GetNpadLeftRightInterfaceType"}, | 262 | {406, nullptr, "GetNpadLeftRightInterfaceType"}, |
| 263 | {407, nullptr, "GetNpadOfHighestBatteryLevelForJoyLeft"}, | 263 | {407, nullptr, "GetNpadOfHighestBatteryLevel"}, |
| 264 | {408, nullptr, "GetNpadOfHighestBatteryLevelForJoyRight"}, | 264 | {408, nullptr, "GetNpadOfHighestBatteryLevelForJoyRight"}, |
| 265 | {500, nullptr, "GetPalmaConnectionHandle"}, | 265 | {500, nullptr, "GetPalmaConnectionHandle"}, |
| 266 | {501, nullptr, "InitializePalma"}, | 266 | {501, nullptr, "InitializePalma"}, |
diff --git a/src/core/hle/service/mii/mii.cpp b/src/core/hle/service/mii/mii.cpp index b81bf6277..d7080b715 100644 --- a/src/core/hle/service/mii/mii.cpp +++ b/src/core/hle/service/mii/mii.cpp | |||
| @@ -47,6 +47,7 @@ public: | |||
| 47 | {23, nullptr, "Convert"}, | 47 | {23, nullptr, "Convert"}, |
| 48 | {24, nullptr, "ConvertCoreDataToCharInfo"}, | 48 | {24, nullptr, "ConvertCoreDataToCharInfo"}, |
| 49 | {25, nullptr, "ConvertCharInfoToCoreData"}, | 49 | {25, nullptr, "ConvertCharInfoToCoreData"}, |
| 50 | {26, nullptr, "Append"}, | ||
| 50 | }; | 51 | }; |
| 51 | // clang-format on | 52 | // clang-format on |
| 52 | 53 | ||
diff --git a/src/core/hle/service/set/set.cpp b/src/core/hle/service/set/set.cpp index e64777668..ffbf90b00 100644 --- a/src/core/hle/service/set/set.cpp +++ b/src/core/hle/service/set/set.cpp | |||
| @@ -202,6 +202,7 @@ SET::SET() : ServiceFramework("set") { | |||
| 202 | {8, &SET::GetQuestFlag, "GetQuestFlag"}, | 202 | {8, &SET::GetQuestFlag, "GetQuestFlag"}, |
| 203 | {9, &SET::GetKeyCodeMap2, "GetKeyCodeMap2"}, | 203 | {9, &SET::GetKeyCodeMap2, "GetKeyCodeMap2"}, |
| 204 | {10, nullptr, "GetFirmwareVersionForDebug"}, | 204 | {10, nullptr, "GetFirmwareVersionForDebug"}, |
| 205 | {11, nullptr, "GetDeviceNickName"}, | ||
| 205 | }; | 206 | }; |
| 206 | // clang-format on | 207 | // clang-format on |
| 207 | 208 | ||
diff --git a/src/core/hle/service/set/set_sys.cpp b/src/core/hle/service/set/set_sys.cpp index 8bd4c7e79..080b5743e 100644 --- a/src/core/hle/service/set/set_sys.cpp +++ b/src/core/hle/service/set/set_sys.cpp | |||
| @@ -300,6 +300,8 @@ SET_SYS::SET_SYS() : ServiceFramework("set:sys") { | |||
| 300 | {198, nullptr, "SetButtonConfigRegisteredSettingsEmbedded"}, | 300 | {198, nullptr, "SetButtonConfigRegisteredSettingsEmbedded"}, |
| 301 | {199, nullptr, "GetButtonConfigRegisteredSettings"}, | 301 | {199, nullptr, "GetButtonConfigRegisteredSettings"}, |
| 302 | {200, nullptr, "SetButtonConfigRegisteredSettings"}, | 302 | {200, nullptr, "SetButtonConfigRegisteredSettings"}, |
| 303 | {201, nullptr, "GetFieldTestingFlag"}, | ||
| 304 | {202, nullptr, "SetFieldTestingFlag"}, | ||
| 303 | }; | 305 | }; |
| 304 | // clang-format on | 306 | // clang-format on |
| 305 | 307 | ||