mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-03 01:40:17 -05:00
Merge remote-tracking branch 'origin/draw-sextant-enum-matrix'
This commit is contained in:
commit
cebdae4bae
1 changed files with 8 additions and 6 deletions
|
|
@ -1765,12 +1765,14 @@ draw_sextant(wchar_t wc, struct buf *buf)
|
||||||
* 4 middle right
|
* 4 middle right
|
||||||
* 5 lower right
|
* 5 lower right
|
||||||
*/
|
*/
|
||||||
#define UPPER_LEFT (1 << 0)
|
enum {
|
||||||
#define MIDDLE_LEFT (1 << 1)
|
UPPER_LEFT = 1 << 0,
|
||||||
#define LOWER_LEFT (1 << 2)
|
MIDDLE_LEFT = 1 << 1,
|
||||||
#define UPPER_RIGHT (1 << 3)
|
LOWER_LEFT = 1 << 2,
|
||||||
#define MIDDLE_RIGHT (1 << 4)
|
UPPER_RIGHT = 1 << 3,
|
||||||
#define LOWER_RIGHT (1 << 5)
|
MIDDLE_RIGHT = 1 << 4,
|
||||||
|
LOWER_RIGHT = 1 << 5,
|
||||||
|
};
|
||||||
|
|
||||||
static const uint8_t matrix[60] = {
|
static const uint8_t matrix[60] = {
|
||||||
/* U+1fb00 - U+1fb0f */
|
/* U+1fb00 - U+1fb0f */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue