summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar aroulin2015-07-07 20:41:26 +0200
committerGravatar aroulin2015-07-12 03:49:16 -0400
commit1f125a04c3fd1fef1fe50ac171ba82ce05ffdc50 (patch)
treedc4858c2ae26eeacf85f640596434b3b713c514d /src
parentMerge pull request #823 from Subv/applets_drawing (diff)
downloadyuzu-1f125a04c3fd1fef1fe50ac171ba82ce05ffdc50.tar.gz
yuzu-1f125a04c3fd1fef1fe50ac171ba82ce05ffdc50.tar.xz
yuzu-1f125a04c3fd1fef1fe50ac171ba82ce05ffdc50.zip
Y2R: Fix narrowing warning
Diffstat (limited to 'src')
-rw-r--r--src/core/hw/y2r.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/y2r.cpp b/src/core/hw/y2r.cpp
index b40f13cae..f80e26ecd 100644
--- a/src/core/hw/y2r.cpp
+++ b/src/core/hw/y2r.cpp
@@ -111,7 +111,7 @@ static void SendData(const u32* input, ConversionBuffer& buf, int amount_of_data
111 while (output < unit_end) { 111 while (output < unit_end) {
112 u32 color = *input++; 112 u32 color = *input++;
113 Math::Vec4<u8> col_vec{ 113 Math::Vec4<u8> col_vec{
114 (color >> 24) & 0xFF, (color >> 16) & 0xFF, (color >> 8) & 0xFF, alpha, 114 (u8)(color >> 24), (u8)(color >> 16), (u8)(color >> 8), alpha
115 }; 115 };
116 116
117 switch (output_format) { 117 switch (output_format) {