Add pausing
This commit is contained in:
31
text.c
31
text.c
@@ -130,6 +130,13 @@ static const glyph_t font[] = {
|
||||
{ { 1, 4 }, { -1, 4 }, { -1, -4 }, { 1, -4 } },
|
||||
},
|
||||
},
|
||||
['D'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 5 },
|
||||
.lines = {
|
||||
{ { -1, 4 }, { -1, -4 }, { 1, -4 }, { 0, 4 }, { -1, 4 } },
|
||||
},
|
||||
},
|
||||
['E'] = {
|
||||
.line_count = 2,
|
||||
.line_lens = { 4, 2 },
|
||||
@@ -166,6 +173,13 @@ static const glyph_t font[] = {
|
||||
{ { -1, 4 }, { -1, -4 }, { 1, -4 }, { 1, 4 }, { -1, 4 } },
|
||||
},
|
||||
},
|
||||
['P'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 5 },
|
||||
.lines = {
|
||||
{ { -1, -4 }, { -1, 4 }, { 1, 4 }, { 1, -2 }, { -1, -2 } },
|
||||
},
|
||||
},
|
||||
['R'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 6 },
|
||||
@@ -176,6 +190,23 @@ static const glyph_t font[] = {
|
||||
},
|
||||
},
|
||||
},
|
||||
['S'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 6 },
|
||||
.lines = {
|
||||
{
|
||||
{ 1, 4 }, { -1, 4 }, { -1, -2 },
|
||||
{ 1, -2 }, { 1, -4 }, { -1, -4 },
|
||||
},
|
||||
},
|
||||
},
|
||||
['U'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 4 },
|
||||
.lines = {
|
||||
{ { -1, 4 }, { -1, -4 }, { 1, -4 }, { 1, 4 } },
|
||||
},
|
||||
},
|
||||
['V'] = {
|
||||
.line_count = 1,
|
||||
.line_lens = { 3 },
|
||||
|
||||
Reference in New Issue
Block a user