Removed font enumeration printf on Mac

master
Allen Webster 2017-11-17 19:03:54 -05:00
parent 15d6ccf27f
commit ee2263ae1a
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}