From 657cf9f90c6e5a0c6d37420ce9af65f9147268ee Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Wed, 30 Dec 2020 13:31:17 +0100 Subject: [PATCH] early-access version 1267 --- README.md | 2 +- src/CMakeLists.txt | 1 + src/core/hle/service/pcie/pcie.cpp | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d128b4cde..b79bae889 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 1266. +This is the source code for early-access 1267. ## Legal Notice diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a22b564d6..8777df751 100755 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -62,6 +62,7 @@ else() -Werror=implicit-fallthrough -Werror=missing-declarations -Werror=reorder + -Werror=uninitialized -Werror=unused-result -Wextra -Wmissing-declarations diff --git a/src/core/hle/service/pcie/pcie.cpp b/src/core/hle/service/pcie/pcie.cpp index 80c0fc7ac..f6686fc4d 100755 --- a/src/core/hle/service/pcie/pcie.cpp +++ b/src/core/hle/service/pcie/pcie.cpp @@ -48,7 +48,7 @@ public: class PCIe final : public ServiceFramework { 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"},