diff options
author | Xavier Cho <mysticfallband@gmail.com> | 2018-04-08 12:43:31 +0900 |
---|---|---|
committer | Xavier Cho <mysticfallband@gmail.com> | 2018-04-17 07:39:37 +0900 |
commit | 85787776a537e2b0ee3b116e0d7dd342e7276a11 (patch) | |
tree | 4189c79d0b850614643d716c7ea7b04274a0905b /modules | |
parent | b765c051cb4e71b377fd5d653e77fc73d390c2b9 (diff) |
#18051: Use default parameter value
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/glue/cs_files/Color.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/cs_files/Color.cs b/modules/mono/glue/cs_files/Color.cs index a5160e415a..2389cbd286 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 { |