summaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-22 16:25:05 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-22 16:25:05 -0500
commit73a00e3b343526887579f698ca2db324cc4c7cee (patch)
tree213434234065c76e6fe0f8db9c1078937641989b /text.c
parent968bbd92cf9bf9cc364baa973d81f4dcfa647ca3 (diff)
bold text for file selector cwd
Diffstat (limited to 'text.c')
-rw-r--r--text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.c b/text.c
index 54694ce..fbce4eb 100644
--- a/text.c
+++ b/text.c
@@ -75,7 +75,7 @@ static Status text_load_char_page(Font *font, int page) {
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
#if DEBUG
- debug_println("Loaded font page %d with %dx%d bitmap as texture %u.", page, bitmap_width, bitmap_height, texture);
+ debug_println("Loaded font page %p:%03d with %dx%d bitmap as texture %u.", (void *)font, page, bitmap_width, bitmap_height, texture);
#endif
font->textures[page] = texture;
font->tex_widths[page] = bitmap_width;