From 37ce381e3d82b23f3638cdc68ae5e2cbc0953f2b Mon Sep 17 00:00:00 2001 From: Xavier Cho Date: Sun, 8 Apr 2018 12:43:31 +0900 Subject: [PATCH] #18051: Use default parameter value (cherry picked from commit 85787776a537e2b0ee3b116e0d7dd342e7276a11) --- modules/mono/glue/cs_files/Color.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mono/glue/cs_files/Color.cs b/modules/mono/glue/cs_files/Color.cs index a5160e415a7..2389cbd2865 100644 --- a/modules/mono/glue/cs_files/Color.cs +++ b/modules/mono/glue/cs_files/Color.cs @@ -104,7 +104,7 @@ namespace Godot } } - private static readonly Color black = new Color(0f, 0f, 0f, 1.0f); + private static readonly Color black = new Color(0f, 0f, 0f); public Color Black {