From ee2263ae1ad6bc07ca958e1b311bac7254130732 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Fri, 17 Nov 2017 19:03:54 -0500 Subject: [PATCH] Removed font enumeration printf on Mac --- platform_mac/mac_4ed.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform_mac/mac_4ed.m b/platform_mac/mac_4ed.m index ed7a1ae8..87dacad3 100644 --- a/platform_mac/mac_4ed.m +++ b/platform_mac/mac_4ed.m @@ -767,12 +767,14 @@ osx_list_loadable_fonts(void){ result.paths[i] = path_c; } +#if 0 for (int i = 0; i < count; ++i){ char *name = result.names[i]; char *path = result.paths[i]; fprintf(stdout, "found: %s\nat: %s\n", name, path); fflush(stdout); } +#endif return(result); }