Fix bitmap

This commit is contained in:
Armel FAUVEAU
2024-06-24 19:32:50 +02:00
parent ee59118fce
commit 9f425bf085
4 changed files with 11 additions and 10 deletions

View File

@@ -203,34 +203,30 @@ const uint8_t BITMAP_ScanList4[7] =
0b01111111,
};
const uint8_t BITMAP_ScanList5[11] =
const uint8_t BITMAP_ScanList5[9] =
{
// 'All List' symbol
0b11111111,
0b11000011,
0b10111101,
0b10111101,
0b11011011,
0b11100111,
0b11011011,
0b10111101,
0b10111101,
0b11000011,
0b11111111
};
const uint8_t BITMAP_ScanList6[11] =
const uint8_t BITMAP_ScanList6[9] =
{
// 'All' symbol
0b00000000,
0b00111100,
0b01000010,
0b01000010,
0b00100100,
0b00011000,
0b00100100,
0b01000010,
0b01000010,
0b00111100,
0b00000000
};