diff --git a/src/core/hle/service/hid/hid_spvr.h b/src/core/hle/service/hid/hid_spvr.h index a49101dc3..749bd36b8 100644 --- a/src/core/hle/service/hid/hid_spvr.h +++ b/src/core/hle/service/hid/hid_spvr.h @@ -11,6 +11,7 @@ namespace Service::HID { class Spvr final : public Module::Interface { public: explicit Spvr(std::shared_ptr hid); + private: SERVICE_SERIALIZATION(Spvr, hid, Module) }; diff --git a/src/core/hle/service/hid/hid_user.h b/src/core/hle/service/hid/hid_user.h index 6fd9803c6..8a6763ea6 100644 --- a/src/core/hle/service/hid/hid_user.h +++ b/src/core/hle/service/hid/hid_user.h @@ -14,6 +14,7 @@ namespace Service::HID { class User final : public Module::Interface { public: explicit User(std::shared_ptr hid); + private: SERVICE_SERIALIZATION(User, hid, Module) };