From 93c68cc9032b460dd4c055a9488c166dbc0b5619 Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Wed, 23 Jul 2025 13:03:21 -0500 Subject: [PATCH] bitmap flip --- src/of_the_day_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/of_the_day_manager.py b/src/of_the_day_manager.py index ae2e50f9..9dbddf8e 100644 --- a/src/of_the_day_manager.py +++ b/src/of_the_day_manager.py @@ -179,7 +179,7 @@ class OfTheDayManager: if byte_index < len(bitmap.buffer): byte = bitmap.buffer[byte_index] if byte & (1 << (7 - (j % 8))): - draw.point((x + j, glyph_y - i), fill=color) + draw.point((x + j, glyph_y + i), fill=color) x += face.glyph.advance.x >> 6 return x - orig_x