summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/video_core/texture/etc1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture/etc1.cpp b/src/video_core/texture/etc1.cpp
index af60cde1e..2b7d26f91 100644
--- a/src/video_core/texture/etc1.cpp
+++ b/src/video_core/texture/etc1.cpp
@@ -17,7 +17,7 @@ namespace Texture {
17 17
18namespace { 18namespace {
19 19
20constexpr std::array<u8[2], 8> etc1_modifier_table = {{ 20constexpr std::array<std::array<u8, 2>, 8> etc1_modifier_table = {{
21 {2, 8}, {5, 17}, {9, 29}, {13, 42}, {18, 60}, {24, 80}, {33, 106}, {47, 183}, 21 {2, 8}, {5, 17}, {9, 29}, {13, 42}, {18, 60}, {24, 80}, {33, 106}, {47, 183},
22}}; 22}};
23 23