Add pausing

This commit is contained in:
2025-10-18 17:43:22 +01:00
parent 07616120d3
commit 5604675ca6
4 changed files with 76 additions and 10 deletions

31
text.c
View File

@@ -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 },