diff --git a/src/core/hle/service/ngc/ngc.cpp b/src/core/hle/service/ngc/ngc.cpp index eabedef90f..7d16532213 100644 --- a/src/core/hle/service/ngc/ngc.cpp +++ b/src/core/hle/service/ngc/ngc.cpp @@ -214,9 +214,9 @@ public: // clang-format on RegisterHandlers(functions); } - Result Cmd0(OutInterface out_interface) { + Result Cmd0(OutInterface out_interface) { LOG_WARNING(Service_NGC, "stubbed"); - *out_interface = std::make_shared(); + *out_interface = std::make_shared(system); R_SUCCEED(); } }; @@ -263,7 +263,7 @@ public: } Result Cmd0(OutInterface out_interface) { LOG_WARNING(Service_NGC, "stubbed"); - *out_interface = std::make_shared(); + *out_interface = std::make_shared(system); R_SUCCEED(); } };