diff options
| -rw-r--r-- | src/core/hle/ipc_helpers.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 40e6c4897..0f1077d9e 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -98,9 +98,9 @@ public:          PushRaw(data_payload_header);      } -    template <class T> -    void PushIpcInterface() { -        context->AddDomainObject(std::make_shared<T>()); +    template <class T, class... Args> +    void PushIpcInterface(Args&&... args) { +        context->AddDomainObject(std::make_shared<T>(std::forward<Args>(args)...));      }      // Validate on destruction, as there shouldn't be any case where we don't want it  | 
