summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-12-27 08:52:10 +0100
committerGitHub <noreply@github.com>2018-12-27 08:52:10 +0100
commita1fa614e78643832a37fa436ae4c3012bbc819df (patch)
treee7fe911ac574eaf3410d6d6dc4d8154ee5fac4fa /modules
parentd13c292c1afb55bc913369bc2f08f0f2505f90b9 (diff)
parenta5e38586ce474e8239085256e097bb614e09e83c (diff)
Merge pull request #24561 from KellyThomas/fix-antiquewhite
fix capitalization for antiquewhite
Diffstat (limited to 'modules')
-rw-r--r--modules/mono/glue/Managed/Files/Colors.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/Managed/Files/Colors.cs b/modules/mono/glue/Managed/Files/Colors.cs
index 942375b0fe..bc2a1a3bd7 100644
--- a/modules/mono/glue/Managed/Files/Colors.cs
+++ b/modules/mono/glue/Managed/Files/Colors.cs
@@ -8,7 +8,7 @@ namespace Godot
// Color names and values are derived from core/color_names.inc
internal static readonly Dictionary<string, Color> namedColors = new Dictionary<string, Color> {
{"aliceblue", new Color(0.94f, 0.97f, 1.00f)},
- {"antiqueWhite", new Color(0.98f, 0.92f, 0.84f)},
+ {"antiquewhite", new Color(0.98f, 0.92f, 0.84f)},
{"aqua", new Color(0.00f, 1.00f, 1.00f)},
{"aquamarine", new Color(0.50f, 1.00f, 0.83f)},
{"azure", new Color(0.94f, 1.00f, 1.00f)},