aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/debug_utils
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-02-25 21:42:42 -0500
committerGravatar bunnei <bunneidev@gmail.com>2015-02-25 21:42:42 -0500
commitc7dac73b0c4f3552882f8e7a04ffff8ead435d7b (patch)
treea159087da1d5d57754524150b265cdbbcc03aebc /src/video_core/debug_utils
parent1b5ee96797e7f3fb334ea60e0c37d356929638e8 (diff)
parentea3c99f3a2422c98f383df0881348b1b4a3c91d2 (diff)
Merge pull request #612 from yuriks/fix-A4
Video core: Fix A4 texture decoding
Diffstat (limited to 'src/video_core/debug_utils')
-rw-r--r--src/video_core/debug_utils/debug_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/debug_utils/debug_utils.cpp b/src/video_core/debug_utils/debug_utils.cpp
index 79544942..f436aa54 100644
--- a/src/video_core/debug_utils/debug_utils.cpp
+++ b/src/video_core/debug_utils/debug_utils.cpp
@@ -436,9 +436,9 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture
case Regs::TextureFormat::A4:
{
- const u8* source_ptr = source + offset / 2 + i / 2;
+ const u8* source_ptr = source + (offset + i) / 2;
- u8 a = (coarse_x % 2) ? ((*source_ptr)&0xF) : (((*source_ptr) & 0xF0) >> 4);
+ u8 a = (i % 2) ? ((*source_ptr & 0xF0) >> 4) : (*source_ptr & 0xF);
a = Color::Convert4To8(a);
if (disable_alpha) {