summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-06-14 19:48:01 +0200
committerarchshift <gh@archshift.com>2015-06-14 19:48:01 +0200
commit0bebac325900d39068e6cfeb85790259982a9fc7 (patch)
tree5c54c89c5135b9a682724e78fbf1a83ae5418727
parentMerge pull request #843 from chinhodado/patch-2 (diff)
parentvideo_core: add extra braces around initializer (diff)
downloadyuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar.gz
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar.bz2
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar.lz
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar.xz
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.tar.zst
yuzu-0bebac325900d39068e6cfeb85790259982a9fc7.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/pica.h6
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 {
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 {