diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-01-11 16:15:17 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-11 20:15:17 +0100 |
| commit | 6e0799580f0d1b473a79471c5d365c6524d97a86 (patch) | |
| tree | 94df6b825227d6f35c8bf5673c3b25fc8235c47f /Ryujinx.Graphics.GAL/RectangleF.cs | |
| parent | ef24c8983dc3971cd906568d337e49be694ee542 (diff) | |
Fix render target clear when sizes mismatch (#2994)
Diffstat (limited to 'Ryujinx.Graphics.GAL/RectangleF.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/RectangleF.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.Graphics.GAL/RectangleF.cs b/Ryujinx.Graphics.GAL/RectangleF.cs index c58aabf0..cf166781 100644 --- a/Ryujinx.Graphics.GAL/RectangleF.cs +++ b/Ryujinx.Graphics.GAL/RectangleF.cs @@ -2,16 +2,16 @@ namespace Ryujinx.Graphics.GAL { public struct RectangleF { - public float X { get; } - public float Y { get; } - public float Width { get; } + public float X { get; } + public float Y { get; } + public float Width { get; } public float Height { get; } public RectangleF(float x, float y, float width, float height) { - X = x; - Y = y; - Width = width; + X = x; + Y = y; + Width = width; Height = height; } } |
