diff options
| author | 2020-12-30 02:58:38 -0300 | |
|---|---|---|
| committer | 2020-12-30 02:58:38 -0300 | |
| commit | 157fc2d785fff19cf657b37300075747368c829a (patch) | |
| tree | e75dfd9d82005b2e34ab241cc7956e3a42a7c2ca /src | |
| parent | Merge pull request #5247 from comex/xx-concepts (diff) | |
| download | yuzu-157fc2d785fff19cf657b37300075747368c829a.tar.gz yuzu-157fc2d785fff19cf657b37300075747368c829a.tar.xz yuzu-157fc2d785fff19cf657b37300075747368c829a.zip | |
service/pcie: Fix invalid initialization argument
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/pcie/pcie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/pcie/pcie.cpp b/src/core/hle/service/pcie/pcie.cpp index 80c0fc7ac..f6686fc4d 100644 --- a/src/core/hle/service/pcie/pcie.cpp +++ b/src/core/hle/service/pcie/pcie.cpp | |||
| @@ -48,7 +48,7 @@ public: | |||
| 48 | 48 | ||
| 49 | class PCIe final : public ServiceFramework<PCIe> { | 49 | class PCIe final : public ServiceFramework<PCIe> { |
| 50 | public: | 50 | public: |
| 51 | explicit PCIe(Core::System& system_) : ServiceFramework{system, "pcie"} { | 51 | explicit PCIe(Core::System& system_) : ServiceFramework{system_, "pcie"} { |
| 52 | // clang-format off | 52 | // clang-format off |
| 53 | static const FunctionInfo functions[] = { | 53 | static const FunctionInfo functions[] = { |
| 54 | {0, nullptr, "RegisterClassDriver"}, | 54 | {0, nullptr, "RegisterClassDriver"}, |