diff options
| author | bunnei <bunneidev@gmail.com> | 2023-02-15 12:33:59 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-15 12:33:59 -0800 |
| commit | 0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4 (patch) | |
| tree | 9d5085147a28898c866b14858f2041deb8497111 /src/core/hle/service/hid/hid.cpp | |
| parent | 3599ef207752f0e5b9deb06922ea53984084000b (diff) | |
| parent | 79fbdfca170a8eec71f8e037df9132cfc6fc5f44 (diff) | |
Merge pull request #9809 from liamwhite/unused-service
service: remove deleted services
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 5a1aa0903..cd6d000ef 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -2734,25 +2734,11 @@ private: } }; -class HidTmp final : public ServiceFramework<HidTmp> { -public: - explicit HidTmp(Core::System& system_) : ServiceFramework{system_, "hid:tmp"} { - // clang-format off - static const FunctionInfo functions[] = { - {0, nullptr, "GetConsoleSixAxisSensorCalibrationValues"}, - }; - // clang-format on - - RegisterHandlers(functions); - } -}; - void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system) { std::make_shared<Hid>(system)->InstallAsService(service_manager); std::make_shared<HidBus>(system)->InstallAsService(service_manager); std::make_shared<HidDbg>(system)->InstallAsService(service_manager); std::make_shared<HidSys>(system)->InstallAsService(service_manager); - std::make_shared<HidTmp>(system)->InstallAsService(service_manager); std::make_shared<Service::IRS::IRS>(system)->InstallAsService(service_manager); std::make_shared<Service::IRS::IRS_SYS>(system)->InstallAsService(service_manager); |
