From 720191d1f75f43bb8b649bad571114db007ae048 Mon Sep 17 00:00:00 2001 From: Dentomologist Date: Sat, 12 Aug 2023 20:37:01 -0700 Subject: [PATCH] AbstractFramebuffer: Fix Android reorder-ctor warning Move declaration of m_additional_color_attachments so its initialization order matches that of the constructor. --- Source/Core/VideoCommon/AbstractFramebuffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/AbstractFramebuffer.h b/Source/Core/VideoCommon/AbstractFramebuffer.h index e4c3b0451c..194dca24bc 100644 --- a/Source/Core/VideoCommon/AbstractFramebuffer.h +++ b/Source/Core/VideoCommon/AbstractFramebuffer.h @@ -44,9 +44,9 @@ public: protected: AbstractTexture* m_color_attachment; AbstractTexture* m_depth_attachment; + std::vector m_additional_color_attachments; AbstractTextureFormat m_color_format; AbstractTextureFormat m_depth_format; - std::vector m_additional_color_attachments; u32 m_width; u32 m_height; u32 m_layers;