diff options
author | Michael Pavone <pavone@retrodev.com> | 2018-03-26 21:39:18 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2018-03-26 21:39:18 -0700 |
commit | 83d0039a72428b4d58a640dbb6e8b40d437c5fc5 (patch) | |
tree | c4c438d29acbd278fd349bf43477772f4311fba2 | |
parent | fef637bdab85fef50d54d985e9c254dbca289d99 (diff) |
Remove some debug print stuff from 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"); |