mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2024-10-03 18:18:46 -04:00
Merge pull request #12 from sej7278/master
Fix for newer GCC versions (const)
This commit is contained in:
commit
1ca9286a61
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
// standard ascii 5x7 font
|
// standard ascii 5x7 font
|
||||||
|
|
||||||
static unsigned char font[] PROGMEM = {
|
static const unsigned char font[] PROGMEM = {
|
||||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
0x3E, 0x5B, 0x4F, 0x5B, 0x3E,
|
0x3E, 0x5B, 0x4F, 0x5B, 0x3E,
|
||||||
0x3E, 0x6B, 0x4F, 0x6B, 0x3E,
|
0x3E, 0x6B, 0x4F, 0x6B, 0x3E,
|
||||||
|
Loading…
Reference in New Issue
Block a user