Explorar o código

service/pcie: Fix invalid initialization argument

ReinUsesLisp %!s(int64=5) %!d(string=hai) anos
pai
achega
157fc2d785
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/service/pcie/pcie.cpp

+ 1 - 1
src/core/hle/service/pcie/pcie.cpp

@@ -48,7 +48,7 @@ public:
 
 class PCIe final : public ServiceFramework<PCIe> {
 public:
-    explicit PCIe(Core::System& system_) : ServiceFramework{system, "pcie"} {
+    explicit PCIe(Core::System& system_) : ServiceFramework{system_, "pcie"} {
         // clang-format off
         static const FunctionInfo functions[] = {
             {0, nullptr, "RegisterClassDriver"},