Explorar el Código

service/pcie: Fix invalid initialization argument

ReinUsesLisp hace 5 años
padre
commit
157fc2d785
Se han modificado 1 ficheros con 1 adiciones y 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"},