summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture
diff options
context:
space:
mode:
authorLectem <lectem@gmail.com>2017-02-05 14:55:51 +0100
committerLectem <lectem@gmail.com>2017-02-05 14:55:51 +0100
commitf146a6d45ae00a5df0dce50e0512e9efd38cd143 (patch)
tree44729c5687b34f28f0118568d710141774d951ef /src/video_core/texture
parentMerge pull request #2027 from Lectem/ipcrefactor (diff)
downloadyuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar.gz
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar.bz2
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar.lz
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar.xz
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.tar.zst
yuzu-f146a6d45ae00a5df0dce50e0512e9efd38cd143.zip
Diffstat (limited to 'src/video_core/texture')
-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 {
namespace {
-constexpr std::array<u8[2], 8> etc1_modifier_table = {{
+constexpr 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},
}};