diff options
author | gdkchan <gab.dark.100@gmail.com> | 2020-11-01 15:26:24 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-01 15:26:24 -0300 |
commit | 6222f173f0c85a55d31655ddb78638907c07e1ce (patch) | |
tree | 4de07528a031723732e024bc7b04c38ed950604a | |
parent | 876fa656f6f94e11517571924d699a2451b00288 (diff) |
Fix compressed to non-compressed texture copy size (#1649)
-rw-r--r-- | Ryujinx.Graphics.OpenGL/Image/TextureCopyUnscaled.cs | 4 |
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); |