diff options
Diffstat (limited to 'nuklear_ui/font_win.c')
-rw-r--r-- | nuklear_ui/font_win.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nuklear_ui/font_win.c b/nuklear_ui/font_win.c index 1235d9e..b2c5d75 100644 --- a/nuklear_ui/font_win.c +++ b/nuklear_ui/font_win.c @@ -40,7 +40,6 @@ uint8_t *default_font(uint32_t *size_out) if (weight < 1 || weight > 9) { weight = 4; } - printf("Preferred family: %s, weight: %d\n", pref_name, weight); pref_sub_families = weight_to_subfamilies[weight]; } if (pref_name) { @@ -74,7 +73,6 @@ uint8_t *default_font(uint32_t *size_out) } free(ext); char *base = basename_no_extension(entries[i].name); - printf("basename: %s\n", base); if (pref_prefix && !strncasecmp(base, pref_prefix, 6)) { path = path_append(fonts, entries[i].name); FILE *f = fopen(path, "rb"); |