From 1e4b78af56dfb969e10af4b7b07e1aeb8ddd3f8f Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 6 Nov 2012 20:43:00 +0000 Subject: noisy debug --- amiga/font_scan.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/amiga/font_scan.c b/amiga/font_scan.c index a58acf01b..13087716c 100644 --- a/amiga/font_scan.c +++ b/amiga/font_scan.c @@ -299,11 +299,15 @@ ULONG ami_font_scan_list(struct MinList *list) af = (struct AvailFonts *)&(afh[1]); for(i = 0; i < afh->afh_NumEntries; i++) { + LOG(("AvailFonts entry %ld", i)); if(af[i].af_Attr.ta_Style == FS_NORMAL) { if(af[i].af_Attr.ta_Name != NULL) { + LOG(("Checking font %s", af[i].af_Attr.ta_Name)); node = (struct nsObject *)FindIName((struct List *)list, af[i].af_Attr.ta_Name); + LOG(("Node address %lx", node)); if(node == NULL) { + LOG(("Node address (2) %lx", node)); node = AddObject(list, AMINS_UNKNOWN); if(node) { node->dtz_Node.ln_Name = strdup(af[i].af_Attr.ta_Name); -- cgit v1.2.3