Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12099 from Dentomologist/abstractframebuffer_chan…
…ge_member_declaration_order

AbstractFramebuffer: Fix Android reorder-ctor warning
  • Loading branch information
JosJuice committed Aug 13, 2023
2 parents bc47a28 + 720191d commit 14a6076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/VideoCommon/AbstractFramebuffer.h
Expand Up @@ -44,9 +44,9 @@ class AbstractFramebuffer
protected:
AbstractTexture* m_color_attachment;
AbstractTexture* m_depth_attachment;
std::vector<AbstractTexture*> m_additional_color_attachments;
AbstractTextureFormat m_color_format;
AbstractTextureFormat m_depth_format;
std::vector<AbstractTexture*> m_additional_color_attachments;
u32 m_width;
u32 m_height;
u32 m_layers;
Expand Down

0 comments on commit 14a6076

Please sign in to comment.