changeset 1547:cb12667aa83e

Remove some debug print stuff from font_win.c
author Michael Pavone <pavone@retrodev.com>
date Mon, 26 Mar 2018 21:39:18 -0700
parents 1a09422b87a5
children 94ba407a5ec1
files nuklear_ui/font_win.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/nuklear_ui/font_win.c	Mon Mar 26 21:25:40 2018 -0700
+++ b/nuklear_ui/font_win.c	Mon Mar 26 21:39:18 2018 -0700
@@ -40,7 +40,6 @@
 		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 @@
 		}
 		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");