Przeglądaj źródła

Merge pull request #637 from Subv/etc

GPU/Textures: Fixed ETC texture decoding.
Tony Wasserka 11 lat temu
rodzic
commit
f29897ca6d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/video_core/debug_utils/debug_utils.cpp

+ 1 - 1
src/video_core/debug_utils/debug_utils.cpp

@@ -505,7 +505,7 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture
                 }
                 }
 
 
                 // Add modifier
                 // Add modifier
-                unsigned table_index = (x < 2) ? table_index_2.Value() : table_index_1.Value();
+                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 auto etc1_modifier_table = std::array<std::array<u8, 2>, 8>{{
                     {  2,  8 }, {  5, 17 }, {  9,  29 }, { 13,  42 },
                     {  2,  8 }, {  5, 17 }, {  9,  29 }, { 13,  42 },