mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
282 B
Plaintext
22 lines
282 B
Plaintext
#define log_width 16
|
|
#define log_height 16
|
|
static char log_bits[] = {
|
|
0xfc, 0x3f,
|
|
0xf2, 0x3f,
|
|
0xf2, 0x5f,
|
|
0xf2, 0xbf,
|
|
0xc2, 0xdf,
|
|
0x3e, 0xbe,
|
|
0x9e, 0xdc,
|
|
0x9e, 0xbc,
|
|
0x3e, 0xde,
|
|
0xfe, 0xb1,
|
|
0xfe, 0xfc,
|
|
0xfe, 0xa4,
|
|
0xfa, 0xf1,
|
|
0xfe, 0xbf,
|
|
0xfc, 0xdf,
|
|
0xf8, 0xbf,
|
|
|
|
};
|