summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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
507 // Add modifier 507 // Add modifier
508 unsigned table_index = (x < 2) ? table_index_1.Value() : table_index_2.Value(); 508 unsigned table_index = (x < 2) ? table_index_1.Value() : table_index_2.Value();
509 509
510 static const auto etc1_modifier_table = std::array<std::array<u8, 2>, 8>{{ 510 static const std::array<std::array<u8, 2>, 8> etc1_modifier_table = {{
511 { 2, 8 }, { 5, 17 }, { 9, 29 }, { 13, 42 }, 511 { 2, 8 }, { 5, 17 }, { 9, 29 }, { 13, 42 },
512 { 18, 60 }, { 24, 80 }, { 33, 106 }, { 47, 183 } 512 { 18, 60 }, { 24, 80 }, { 33, 106 }, { 47, 183 }
513 }}; 513 }};