diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-04 18:36:00 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-06-04 18:37:42 +0200 |
commit | 3e747d769f63fde60f6095bd1ae7c651d4237f39 (patch) | |
tree | 92a5955413dac91972edf32b1824739038704720 /plugingui/font.h | |
parent | 538abc6cd8f4a5996640ec9800815fbac5c34b26 (diff) |
Make Colour movabl;e and make Image contain a vector of Colour instead of raw char data.
Diffstat (limited to 'plugingui/font.h')
-rw-r--r-- | plugingui/font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/font.h b/plugingui/font.h index 4e4c7ba..e18f1bd 100644 --- a/plugingui/font.h +++ b/plugingui/font.h @@ -57,7 +57,7 @@ private: int post_bias{0}; }; - std::array<Character, 255> characters; + std::array<Character, 256> characters; int spacing{1}; }; |