Fix initialization issue #87 (replicating an earlier pull request that wasn't submitted for some reason)
This commit is contained in:
parent
9566005db8
commit
5dce9e6108
1 changed files with 3 additions and 3 deletions
|
@ -194,8 +194,8 @@ const unsigned int BITMAPS[] = {
|
||||||
|
|
||||||
|
|
||||||
struct CharData {
|
struct CharData {
|
||||||
std::array<int, 3> fgColor = {0};
|
std::array<int, 3> fgColor = std::array<int, 3>{0, 0, 0};
|
||||||
std::array<int, 3> bgColor = {0};
|
std::array<int, 3> bgColor = std::array<int, 3>{0, 0, 0};
|
||||||
int codePoint;
|
int codePoint;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue