aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalColorF.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/GalColorF.cs')
-rw-r--r--Ryujinx.Graphics/Gal/GalColorF.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Ryujinx.Graphics/Gal/GalColorF.cs b/Ryujinx.Graphics/Gal/GalColorF.cs
index 7cfb171d..e915870c 100644
--- a/Ryujinx.Graphics/Gal/GalColorF.cs
+++ b/Ryujinx.Graphics/Gal/GalColorF.cs
@@ -8,15 +8,15 @@ namespace Ryujinx.Graphics.Gal
public float Alpha { get; private set; }
public GalColorF(
- float Red,
- float Green,
- float Blue,
- float Alpha)
+ float red,
+ float green,
+ float blue,
+ float alpha)
{
- this.Red = Red;
- this.Green = Green;
- this.Blue = Blue;
- this.Alpha = Alpha;
+ Red = red;
+ Green = green;
+ Blue = blue;
+ Alpha = alpha;
}
}
} \ No newline at end of file