diff --git a/README.md b/README.md index 65f4f5bee..e5ac2c505 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 2573. +This is the source code for early-access 2576. ## Legal Notice diff --git a/src/core/hle/service/nvflinger/consumer_base.h b/src/core/hle/service/nvflinger/consumer_base.h index d72160c2c..9ab949420 100755 --- a/src/core/hle/service/nvflinger/consumer_base.h +++ b/src/core/hle/service/nvflinger/consumer_base.h @@ -26,7 +26,7 @@ public: void Connect(bool controlled_by_app); protected: - ConsumerBase(std::unique_ptr consumer_); + explicit ConsumerBase(std::unique_ptr consumer_); virtual ~ConsumerBase(); virtual void OnFrameAvailable(const BufferItem& item) override; diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index e49e1ae28..430cbc546 100755 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -68,11 +68,11 @@ private: const u32 magic = 2; const u32 process_id = 1; const u32 id; - const INSERT_PADDING_WORDS(3); - const std::array dispdrv = {'d', 'i', 's', 'p', 'd', 'r', 'v', '\0'}; - const INSERT_PADDING_WORDS(2); + INSERT_PADDING_WORDS(3); + std::array dispdrv = {'d', 'i', 's', 'p', 'd', 'r', 'v', '\0'}; + INSERT_PADDING_WORDS(2); }; -static_assert(sizeof(NativeWindow) == 0x28, "ParcelData has wrong size"); +static_assert(sizeof(NativeWindow) == 0x28, "NativeWindow has wrong size"); class IHOSBinderDriver final : public ServiceFramework { public: