diff options
| author | Xavier Cho | 2018-04-08 12:43:31 +0900 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-29 13:39:40 +0200 |
| commit | 37ce381e3d82b23f3638cdc68ae5e2cbc0953f2b (patch) | |
| tree | 97de43b8cd96b59a835a29561227b72efc4a9d04 /modules | |
| parent | 939d50243b0a5768099ebf2138e349176a7a835b (diff) | |
| download | godot-37ce381e3d82b23f3638cdc68ae5e2cbc0953f2b.tar.gz godot-37ce381e3d82b23f3638cdc68ae5e2cbc0953f2b.tar.zst godot-37ce381e3d82b23f3638cdc68ae5e2cbc0953f2b.zip | |
#18051: Use default parameter value
(cherry picked from commit 85787776a537e2b0ee3b116e0d7dd342e7276a11)
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 a5160e415..2389cbd28 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 { |
