aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-11-01 15:26:24 -0300
committerGitHub <noreply@github.com>2020-11-01 15:26:24 -0300
commit6222f173f0c85a55d31655ddb78638907c07e1ce (patch)
tree4de07528a031723732e024bc7b04c38ed950604a
parent876fa656f6f94e11517571924d699a2451b00288 (diff)
Fix compressed to non-compressed texture copy size (#1649)
-rw-r--r--Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs b/Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs
index 28401138..8fc8f85f 100644
--- a/Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs
+++ b/Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs
@@ -46,8 +46,8 @@ namespace Ryujinx.Graphics.OpenGL.Image
}
else if (srcInfo.IsCompressed && !dstInfo.IsCompressed)
{
- dstWidth *= dstInfo.BlockWidth;
- dstHeight *= dstInfo.BlockHeight;
+ dstWidth *= srcInfo.BlockWidth;
+ dstHeight *= srcInfo.BlockHeight;
}
int width = Math.Min(srcWidth, dstWidth);