mirror of
https://github.com/mt-mods/led_marquee.git
synced 2024-11-28 01:53:47 +01:00
forgot to lowercase chars in color codes table
This commit is contained in:
parent
87ebd877b8
commit
4c804e1851
23
init.lua
23
init.lua
@ -52,6 +52,7 @@ local char_to_color = {
|
|||||||
["7"] = 7,
|
["7"] = 7,
|
||||||
["8"] = 8,
|
["8"] = 8,
|
||||||
["9"] = 9,
|
["9"] = 9,
|
||||||
|
|
||||||
["A"] = 10,
|
["A"] = 10,
|
||||||
["B"] = 11,
|
["B"] = 11,
|
||||||
["C"] = 12,
|
["C"] = 12,
|
||||||
@ -69,7 +70,27 @@ local char_to_color = {
|
|||||||
["O"] = 24,
|
["O"] = 24,
|
||||||
["P"] = 25,
|
["P"] = 25,
|
||||||
["Q"] = 26,
|
["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
|
-- the following functions based on the so-named ones in Jeija's digilines mod
|
||||||
|
Loading…
Reference in New Issue
Block a user