Browse Source

service/pcie: Fix invalid initialization argument

pull/15/merge
ReinUsesLisp 5 years ago
parent
commit
157fc2d785
  1. 2
      src/core/hle/service/pcie/pcie.cpp

2
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"},

Loading…
Cancel
Save