diff options
author | Rui <Rui914@users.noreply.github.com> | 2015-08-18 19:57:55 +0900 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-08-19 19:49:45 +0200 |
commit | 3a2bfd4548398aa0a0014fdaee91ce4a12c5963b (patch) | |
tree | 30eb00f1a90ef16d1588675ba189ae4ec757301e /src/util/string.cpp | |
parent | a64d887275535ca805c6e26768a09407a3ea1c4a (diff) | |
download | minetest-3a2bfd4548398aa0a0014fdaee91ce4a12c5963b.tar.gz minetest-3a2bfd4548398aa0a0014fdaee91ce4a12c5963b.tar.bz2 minetest-3a2bfd4548398aa0a0014fdaee91ce4a12c5963b.zip |
Fix indianred and indigo of color-string
Diffstat (limited to 'src/util/string.cpp')
-rw-r--r-- | src/util/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/string.cpp b/src/util/string.cpp index c2724aa58..2c4143c76 100644 --- a/src/util/string.cpp +++ b/src/util/string.cpp @@ -587,8 +587,8 @@ ColorContainer::ColorContainer() colors["greenyellow"] = 0xadff2f; colors["honeydew"] = 0xf0fff0; colors["hotpink"] = 0xff69b4; - colors["indianred "] = 0xcd5c5c; - colors["indigo "] = 0x4b0082; + colors["indianred"] = 0xcd5c5c; + colors["indigo"] = 0x4b0082; colors["ivory"] = 0xfffff0; colors["khaki"] = 0xf0e68c; colors["lavender"] = 0xe6e6fa; |