1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

Minor Terminal tweaks.

This commit is contained in:
Andreas Kling 2019-01-15 07:57:30 +01:00
parent d14ec951ea
commit a8e42bacf4
2 changed files with 3 additions and 3 deletions

View file

@ -97,7 +97,7 @@ void Painter::draw_glyph(const Point& point, char ch, Color color)
{
auto* bitmap = font().glyphBitmap(ch);
if (!bitmap) {
dbgprintf("Font doesn't have 0x%02x ('%c')\n", ch, ch);
dbgprintf("Font doesn't have 0x%02x ('%c')\n", (byte)ch, ch);
ASSERT_NOT_REACHED();
}
int x = point.x();