Adding in {LVL} escape sequence

This commit is contained in:
The Gears of Progress
2026-02-11 21:00:42 -05:00
parent a4af5e3b42
commit 8d869927da
3 changed files with 23 additions and 0 deletions

View File

@@ -340,6 +340,16 @@ int ptgb_write(const byte *text, bool instant, int length)
}
wait_for_user_to_continue(true);
break;
case 0xFC:
if (DISPLAY_CONTROL_CHAR)
{
tc->drawgProc(0xB9);
}
else
{
tc->cursorX += tc->font->widths[0xFC];
}
break;
case 0xFE:
if (DISPLAY_CONTROL_CHAR)
{