aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/RectangleF.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.GAL/RectangleF.cs')
-rw-r--r--Ryujinx.Graphics.GAL/RectangleF.cs12
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;
}
}