summaryrefslogtreecommitdiffstats
path: root/src/video_core/debug_utils/debug_utils.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-04-29 13:37:12 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-04-29 13:37:12 +0200
commit36b48082d5a4005ebe5ec48ed067a531e4316281 (patch)
tree96e5c2836ec1d6c6e41dfbfe170df98a3453d54c /src/video_core/debug_utils/debug_utils.cpp
parentMerge pull request #710 from lioncash/static (diff)
downloadyuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar.gz
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar.bz2
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar.lz
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar.xz
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.tar.zst
yuzu-36b48082d5a4005ebe5ec48ed067a531e4316281.zip
Diffstat (limited to 'src/video_core/debug_utils/debug_utils.cpp')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index c460146cb..2d9d8ab1f 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -507,7 +507,7 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture
// Add modifier
unsigned table_index = (x < 2) ? table_index_1.Value() : table_index_2.Value();
- static const auto etc1_modifier_table = std::array<std::array<u8, 2>, 8>{{
+ static const std::array<std::array<u8, 2>, 8> etc1_modifier_table = {{
{ 2, 8 }, { 5, 17 }, { 9, 29 }, { 13, 42 },
{ 18, 60 }, { 24, 80 }, { 33, 106 }, { 47, 183 }
}};