Merge remote-tracking branch 'origin/draw-sextant-enum-matrix'

This commit is contained in:
Daniel Eklöf 2021-01-15 18:43:04 +01:00
commit cebdae4bae
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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 */