forgot to lowercase chars in color codes table

This commit is contained in:
Vanessa Dannenberg 2018-08-20 20:58:10 -04:00
parent 87ebd877b8
commit 4c804e1851
1 changed files with 22 additions and 1 deletions

View File

@ -52,6 +52,7 @@ local char_to_color = {
["7"] = 7,
["8"] = 8,
["9"] = 9,
["A"] = 10,
["B"] = 11,
["C"] = 12,
@ -69,7 +70,27 @@ local char_to_color = {
["O"] = 24,
["P"] = 25,
["Q"] = 26,
["R"] = 27
["R"] = 27,
["a"] = 10,
["b"] = 11,
["c"] = 12,
["d"] = 13,
["e"] = 14,
["f"] = 15,
["g"] = 16,
["h"] = 17,
["i"] = 18,
["j"] = 19,
["k"] = 20,
["l"] = 21,
["m"] = 22,
["n"] = 23,
["o"] = 24,
["p"] = 25,
["q"] = 26,
["r"] = 27
}
-- the following functions based on the so-named ones in Jeija's digilines mod