Add missing diagonal element to the ASCIIArt table.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2017-06-04 14:40:40 +01:00
parent 50b84e06fe
commit 97e672cf4d

View file

@ -15,6 +15,7 @@ ASCIIArt::ASCIIArt()
myGlyphs.push_back(Unicode("\u2596", { 0, 0, 14, 0})); // lower left
myGlyphs.push_back(Unicode("\u2597", { 0, 0, 0, 14})); // lower right
myGlyphs.push_back(Unicode("\u2598", {14, 0, 0, 0})); // top left
myGlyphs.push_back(Unicode("\u259A", {14, 0, 0, 14})); // diagonal
myGlyphs.push_back(Unicode("\u259D", { 0, 14, 0, 0})); // top right
}