diff options
| author | 2015-06-14 00:32:33 -0300 | |
|---|---|---|
| committer | 2015-06-14 00:33:08 -0300 | |
| commit | 9b7d85a4f5a3ce6fb4940156af8945bb6214250c (patch) | |
| tree | 5c54c89c5135b9a682724e78fbf1a83ae5418727 /src | |
| parent | Merge pull request #843 from chinhodado/patch-2 (diff) | |
| download | yuzu-9b7d85a4f5a3ce6fb4940156af8945bb6214250c.tar.gz yuzu-9b7d85a4f5a3ce6fb4940156af8945bb6214250c.tar.xz yuzu-9b7d85a4f5a3ce6fb4940156af8945bb6214250c.zip | |
video_core: add extra braces around initializer
Trivial change and fixes several warnings in the clang build.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/pica.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 684ec9818..9628a7589 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h | |||
| @@ -372,9 +372,9 @@ struct Regs { | |||
| 372 | INSERT_PADDING_WORDS(0x2); | 372 | INSERT_PADDING_WORDS(0x2); |
| 373 | 373 | ||
| 374 | const std::array<Regs::TevStageConfig,6> GetTevStages() const { | 374 | const std::array<Regs::TevStageConfig,6> GetTevStages() const { |
| 375 | return { tev_stage0, tev_stage1, | 375 | return {{ tev_stage0, tev_stage1, |
| 376 | tev_stage2, tev_stage3, | 376 | tev_stage2, tev_stage3, |
| 377 | tev_stage4, tev_stage5 }; | 377 | tev_stage4, tev_stage5 }}; |
| 378 | }; | 378 | }; |
| 379 | 379 | ||
| 380 | enum class BlendEquation : u32 { | 380 | enum class BlendEquation : u32 { |