diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-22 16:25:05 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-22 16:25:05 -0500 |
commit | 73a00e3b343526887579f698ca2db324cc4c7cee (patch) | |
tree | 213434234065c76e6fe0f8db9c1078937641989b /text.c | |
parent | 968bbd92cf9bf9cc364baa973d81f4dcfa647ca3 (diff) |
bold text for file selector cwd
Diffstat (limited to 'text.c')
-rw-r--r-- | text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |