mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
video_core: add extra braces around initializer
Trivial change and fixes several warnings in the clang build.
This commit is contained in:
parent
bd5c943c65
commit
9b7d85a4f5
@ -372,9 +372,9 @@ struct Regs {
|
||||
INSERT_PADDING_WORDS(0x2);
|
||||
|
||||
const std::array<Regs::TevStageConfig,6> GetTevStages() const {
|
||||
return { tev_stage0, tev_stage1,
|
||||
tev_stage2, tev_stage3,
|
||||
tev_stage4, tev_stage5 };
|
||||
return {{ tev_stage0, tev_stage1,
|
||||
tev_stage2, tev_stage3,
|
||||
tev_stage4, tev_stage5 }};
|
||||
};
|
||||
|
||||
enum class BlendEquation : u32 {
|
||||
|
Loading…
Reference in New Issue
Block a user