diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-12-19 19:20:02 +0100 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-12-20 18:06:56 +0100 |
commit | 88e9efe4b8b370a93bae688dcbe3c03eda905379 (patch) | |
tree | 97e2e48b32fbe3d758764786a5eb272a3eb2bd85 /src/video_core | |
parent | Pica/DebugUtils: Better document LookupTexture. (diff) | |
download | yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar.gz yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar.bz2 yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar.lz yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar.xz yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.tar.zst yuzu-88e9efe4b8b370a93bae688dcbe3c03eda905379.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/debug_utils/debug_utils.cpp | 4 |
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 1c08ba350..d9fed58bf 100644 --- a/src/video_core/debug_utils/debug_utils.cpp +++ b/src/video_core/debug_utils/debug_utils.cpp @@ -346,7 +346,7 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture case Regs::TextureFormat::RGBA8: { const u8* source_ptr = source + coarse_x * block_height * 4 + coarse_y * info.stride + texel_index_within_tile * 4; - return { source_ptr[3], source_ptr[2], source_ptr[1], disable_alpha ? 255 : source_ptr[0] }; + return { source_ptr[3], source_ptr[2], source_ptr[1], disable_alpha ? (u8)255 : source_ptr[0] }; } case Regs::TextureFormat::RGB8: @@ -385,7 +385,7 @@ const Math::Vec4<u8> LookupTexture(const u8* source, int x, int y, const Texture g = (g << 4) | g; b = (b << 4) | b; a = (a << 4) | a; - return { r, g, b, disable_alpha ? 255 : a }; + return { r, g, b, disable_alpha ? (u8)255 : a }; } case Regs::TextureFormat::IA8: |