From bd82b7a25c185ebdf5cf90264e233cff6f75176d Mon Sep 17 00:00:00 2001 From: Slendi Date: Fri, 10 Oct 2025 03:59:08 +0300 Subject: [PATCH] Add comment to remind myself of my poor life decisions Signed-off-by: Slendi --- src/TextRenderer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/TextRenderer.cpp b/src/TextRenderer.cpp index c15bf72..aae94d9 100644 --- a/src/TextRenderer.cpp +++ b/src/TextRenderer.cpp @@ -266,6 +266,8 @@ auto TextRenderer::generate_glyph(FontRuntime &rt, FontData &fd, } } } + // This really isn't the most accurate thing in the world but should work + // for now. Things like commas might be fucked. for (int y = 0; y < bmp_h; ++y) { int const dst_y = bmp_h - 1 - y; for (int x = 0; x < bmp_w; ++x) {