diff options
author | bunnei <bunneidev@gmail.com> | 2015-04-29 16:27:58 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-04-29 16:27:58 +0200 |
commit | 4d30edc11effef4021a7bd7d5dfe1d92678708b9 (patch) | |
tree | eff13b74e998156d68e8bcd8f6530220827ac1b8 /src/video_core/debug_utils | |
parent | Merge pull request #715 from purpasmart96/configmem_typo_fix (diff) | |
parent | VideoCore: Remove a superfluous auto variable declaration in debug_utils. (diff) | |
download | yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar.gz yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar.bz2 yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar.lz yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar.xz yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.tar.zst yuzu-4d30edc11effef4021a7bd7d5dfe1d92678708b9.zip |
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 2 |
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 } }}; |